/* CSS RESET -------------------------------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  interpolate-size: allow-keywords;
}
a {
  color: inherit;
  transition: all 0.2s ease;
}
p a,
label a {
  border-bottom: 1px solid var(--color--neutral--gray-200);
}
p a:hover,
label a:hover {
  color: var(--color--brand--primary-200);
  border-bottom: 1px solid var(--color--brand--primary-200);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  text-wrap: pretty;
}
section:not(.section-card-contato) {
  overflow: clip;
}
.mg-top-small {
  margin-top: var(--base-unit--1);
}
.mg-top-medium {
  margin-top: var(--base-unit--3);
}
.mg-top-large {
  margin-top: var(--base-unit--7);
}
.mg-bottom-small {
  margin-bottom: var(--base-unit--1);
}
.mg-bottom-medium {
  margin-bottom: var(--base-unit--3);
}
.mg-bottom-large {
  margin-bottom: var(--base-unit--7);
}
.pd-top-small {
  padding-top: var(--base-unit--1);
}
.pd-top-medium {
  padding-top: var(--base-unit--3);
}
.pd-top-large {
  padding-top: var(--base-unit--7);
}
.pd-bottom-small {
  padding-bottom: var(--base-unit--1);
}
.pd-bottom-medium {
  padding-bottom: var(--base-unit--3);
}
.pd-bottom-large {
  padding-bottom: var(--base-unit--7);
}
.list-wrapper ul {
  padding: 0;
  list-style-type: none;
}
.list-wrapper li {
  background-image: url(bullet.svg);
  background-repeat: no-repeat;
  padding-top: 0.125rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
  min-height: 24px;
}
.card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: opacity 0.2s;
}
.breadcrumb > * {
  white-space: nowrap;
}
@media only screen and (max-width: 992px) {
  .mg-top-small-md {
    margin-top: var(--base-unit--1);
  }
  .mg-top-medium-md {
    margin-top: var(--base-unit--3);
  }
  .mg-top-large-md {
    margin-top: var(--base-unit--7);
  }
  .mg-bottom-small-md {
    margin-bottom: var(--base-unit--1);
  }
  .mg-bottom-medium-md {
    margin-bottom: var(--base-unit--3);
  }
  .mg-bottom-large-md {
    margin-bottom: var(--base-unit--7);
  }
  .pd-top-small-md {
    padding-top: var(--base-unit--1);
  }
  .pd-top-medium-md {
    padding-top: var(--base-unit--3);
  }
  .pd-top-large-md {
    padding-top: var(--base-unit--7);
  }
  .pd-bottom-small-md {
    padding-bottom: var(--base-unit--1);
  }
  .pd-bottom-medium-md {
    padding-bottom: var(--base-unit--3);
  }
  .pd-bottom-large-md {
    padding-bottom: var(--base-unit--7);
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --text-heading--h1: var(--base-unit--3-75);
    --text-heading--h2: var(--base-unit--3);
    --text-heading--h3: var(--base-unit--2-5);
    --text-heading--h4: var(--base-unit--2);
  }
}
/* FORM --------------------------------------------------------------------------------------------------------*/
label {
  font-size: var(--text-paragraph--regular);
  font-weight: 400;
}
.section-contato .field-wrapper label,
.section-rede-pesquisa .field-wrapper label {
  color: var(--color--brand--primary-200);
}
input,
textarea,
select {
  color: var(--color--neutral--gray-400);
  vertical-align: middle;
  background-color: white;
  border: 1px solid var(--color--neutral--gray-200);
  width: 100%;
  font-size: var(--text-paragraph--regular);
  display: block;
  outline: none;
}
input,
select {
  padding-inline: var(--base-unit--1);
  height: 48px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_5798_7844' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_5798_7844)'%3E%3Cpath d='M12 15L6 9.0997L7.11828 8L12 12.8006L16.8817 8L18 9.0997L12 15Z' fill='%23003052'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem top 60%;
  background-size: 24px auto;
}
textarea {
  padding: var(--base-unit--1);
  vertical-align: top;
  height: var(--base-unit--12);
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  width: var(--base-unit--1);
  height: var(--base-unit--1);
  vertical-align: middle;
  position: relative;
  bottom: 1px;
  margin: 4px 10px 0 0;
  accent-color: #289be3;
}
input:focus,
textarea:focus {
  /* background-color: var(--color--brand--primary-50); */
  border-color: var(--color--brand--primary-100);
}
.field-pesquisa form {
  flex: 1;
}
.field-pesquisa input {
  border: none;
}
.field-pesquisa input:focus {
  background-color: transparent;
  border-color: transparent;
}
@media only screen and (max-width: 480px) {
  .contato-form .horizontal-wrapper {
    flex-direction: column;
  }
}

/* BUTTONS --------------------------------------------------------------------------------------------------*/
.button .ico-24 {
  margin: 0 0.25rem;
}
.button:has(.ico-24) {
  div:not(.ico-24) {
    margin: 0 0.5rem;
  }
}
/* MENU ------------------------------------------------------------------------------------------------------*/
.nav-dropdown-open,
.nav-pesquisa-open {
  pointer-events: none;
  opacity: 0;
  top: 1rem;
  transition: opacity 0.3s, top 0.3s;
}
.nav-dropdown.active {
  .nav-dropdown-open {
    pointer-events: auto;
    display: block;
    opacity: 1;
    top: 3rem;
  }
  .nav-dropdown-link .ico-24 {
    transform: rotate(180deg);
  }
}
.nav-dropdown-item:hover > .ico-24 {
  transform: translateX(0.5rem);
}
.nav-pesquisa.active {
  .nav-pesquisa-open {
    pointer-events: auto;
    display: block;
    opacity: 1;
    top: 3rem;
  }
}
/* Dropdown Produtos */
.ico-24.is-arrow {
  opacity: 0;
  padding-right: 2rem;
  transition: transform 0.3s, opacity 0.3s, padding 0.3s;
}
.nav-produto-item:hover {
  background-color: #bfdff3;
  .ico-24.is-arrow {
    transform: translateX(0.25rem);
    padding-right: 0;
    opacity: 1;
  }
}
.nav-produto-item.is-active {
  background-color: var(--color--brand--primary-300);
  color: var(--color--neutral--white);
  .ico-24.is-arrow {
    opacity: 1;
    padding-right: 0;
    color: var(--color--brand--primary-100);
  }
}
/* EXPAND/COLLAPSE -------------------------------------------------------------------------------------*/
.expansion-link {
  cursor: pointer;
}
.expansion-link.active {
  & .ico-40 {
    transform: rotate(45deg);
    transition: transform ease 0.3s;
  }
}
.expansion-content {
  opacity: 0;
  max-height: 0;
  transition: max-height ease 0.3s;
}
.expansion-content.active {
  opacity: 1;
}
.expand-item:has(.expansion-content.active) {
  border-color: var(--color--neutral--gray-200);
}
/* TABS ------------------------------------------------------------------------------------------------*/
.tabs-arrow-wrapper.is-right:after {
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(to left, #0072c3 50%, transparent);
  z-index: -1;
}
.tabs-arrow-wrapper.is-left:after {
  content: "";
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(to right, #0072c3 50%, transparent);
  z-index: -1;
}
.tabs-wrapper.is-interna .tabs-arrow {
  background-color: #33b1ff;
}
.tabs-wrapper.is-interna .tabs-arrow-wrapper.is-right:after {
  background: linear-gradient(to left, #f3f3f7 50%, transparent);
}
.tabs-wrapper.is-interna .tabs-arrow-wrapper.is-left:after {
  background: linear-gradient(to left, #f3f3f7 50%, transparent);
}
.tabs-arrow-wrapper.is-right.active,
.tabs-arrow-wrapper.is-left.active {
  display: flex;
}
.tabs-ul {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1200px) {
  .nav-desktop-list li:first-child {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .nav-mobile-menu.active {
    display: flex;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
      rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    box-shadow: 0 0 5rem 1rem #0003;
  }
  .section-hero .padding-global,
  .section-hero .container-large {
    height: 100%;
  }
}
@media only screen and (max-width: 766px) {
  .tab-content .produtos-card:first-child {
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  }
  .tab-content .produtos-card:last-child {
    min-height: 300px;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }
  .section-publicacoes .tabs-wrapper {
    grid-column-gap: var(--base-unit--2);
  }
}
/* CARD PRODUTOS HOME -----------------------------------------------------------------------------------*/
.produtos-card:hover {
  background-color: #0072c3;
  > .produtos-card-info .produtos-card-text {
    height: max-content;
  }
  > .produtos-card-info .card-plus {
    background-color: white;
    color: var(--color--brand--primary-200);
    transform: scale(1.2);
  }
  > .card-image img {
    opacity: 0.15;
  }
}
.produtos-card .card-image:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.3em;
  background-image: linear-gradient(45deg, #00305261, #00000000);
  z-index: 3;
}
.produtos-swiper {
  .swiper .swiper-wrapper .swiper-slide {
    width: 500px !important;
    margin-left: -4.9rem;
  }
}

.produtos-card-info img {
  filter: brightness(0) invert(1);
}

/* CARD POSTS (Blog e Imprensa) -----------------------------------------------------------------------------*/
.post-card:hover > .card-image img,
.post-card-home:hover > .card-image img {
  transform: scale(1.2);
}
.post-card .card-image img,
.post-card-home .card-image img {
  opacity: 0.5;
  transition: transform 0.3s;
}
/* CARD REDE AUTORIZADA -----------------------------------------------------------------------------*/
.rede-autorizada-li a {
  border-bottom: 1px solid var(--color--neutral--gray-100);
}
.rede-autorizada-li a:hover {
  color: var(--color--brand--primary-200);
  border-bottom: 1px solid var(--color--brand--primary-200);
}
/* CARD FALE CONOSCO ----------------------------------------------------------------------------------------*/
.card-fale-conosco:hover {
  background-image: linear-gradient(
    45deg,
    var(--color--brand--primary-100),
    var(--color--brand--primary-200)
  );
  transform: translateY(-0.5rem);
  > .button-arrow {
    background-color: var(--color--brand--primary-100);
  }
  > .button-arrow .ico-40 {
    transform: rotate(-45deg);
  }
}
/* CARD CATEGORIAS PRODUTOS ---------------------------------------------------------------------------------*/
.produto-card-item:nth-child(even) > .produto-item-info {
  order: -1;
}
@media only screen and (max-width: 992px) {
  .produto-card-item:nth-child(even) > .produto-item-info {
    order: 1;
  }
}
.categorias-wrapper .tag-categoria {
  background-color: var(--color--brand--primary-50);
}
/* FOOTER -----------------------------------------------------------------------------------------------------*/
footer a {
  transition: color 0.2s;
}
footer a:hover {
  color: var(--color--brand--primary-100);
  border-color: var(--color--brand--primary-100);
}
.footer-cta > * {
  position: relative;
  z-index: 4;
}
.footer-cta:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.3em;
  background-image: radial-gradient(
    circle at 50% 100%,
    #0072c366,
    #0072c300 50%
  );
  transition: opacity 0.2s ease-out;
  opacity: 0;
}
.footer-cta:hover:after {
  opacity: 1;
}
.footer-cta:hover {
  border-bottom-color: var(--color--brand--primary-100);
  > .ico-40 {
    transform: translateY(-0.25rem);
  }
}
/*SWIPER -------------------------------------------------------------------------------------------------------*/
.swiper {
  overflow: visible;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  max-width: max-content;
}
.videos-swiper {
  .swiper .swiper-wrapper {
    padding-block: 3rem;
  }
  .swiper .swiper-wrapper .swiper-slide {
    opacity: 0.5;
    transform: scale(0.8) !important;
    margin: -3rem;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0, 0.55, 0.33, 0.94);
    width: 70% !important;
  }
  .swiper .swiper-wrapper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9) !important;
  }
  .swiper .swiper-wrapper .swiper-slide-active {
    opacity: 1;
    transform: scale(1) !important;
    border: 2px solid var(--color--brand--primary-100);
    box-shadow: 0 10px 30px #0006;
    z-index: 2;
  }
  .swiper-slide-prev {
    width: 10px !important;
  }
}

/* SWIPER HERO */

.swiper-wrapper.is-hero {
  > .swiper-slide {
    background-color: #ffffff00;
    height: 100% !important;
  }
}

.hero-mobile-image img {
  height: 100%;
  width: 100%;
  opacity: 0.5;
  object-fit: cover;
}

/* Responsivo */
@media only screen and (max-width: 480px) {
  .videos-swiper {
    .swiper .swiper-wrapper .swiper-slide {
      width: 100% !important;
      transform: scale(1) !important;
    }
  }
}
/* RESPONSIVO -------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1330px) {
  .nav-desktop-list:first-child {
    display: none;
  }
  /* REMOVE SPAN DO NAV**/
  nav ul li a span {
    display: none;
  }
}

.produtos-card-text {
  flex-flow: column;
  height: 0;
  transition: height 0.3s ease-in-out;
  overflow: clip;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.section-videos {
  padding-top: var(--base-unit--7);
  padding-bottom: var(--base-unit--7);
  background-color: var(--color--brand--primary-300);
  position: relative;
  overflow: clip;
}
