@charset "UTF-8";
/*---------------------------------------
geral
---------------------------------------*/
* {
  position: relative; }

/*---------------------------------------
reveal
---------------------------------------*/
main .col {
  opacity: 0;
  transition: all .4s ease-out;
  transition-delay: .2s;
  transform: scale(0.95); }
  main .col.active {
    opacity: 1;
    transform: none; }

main .col.noreveal,
main .noreveal .col {
  opacity: 1;
  transform: none !important;
  transition: none !important ß; }

/*---------------------------------------
header
---------------------------------------*/
header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100vw;
  padding: 25px 0;
  transition: var(--transition);
  z-index: 10;
  background-color: var(--bs-yellow); }
  header .lista-idiomas {
    font-size: 16px; }
    header .lista-idiomas a {
      display: inline-block;
      color: black;
      margin-left: 8px; }
      header .lista-idiomas a:hover {
        text-decoration: underline; }
    header .lista-idiomas span {
      margin-left: 8px;
      display: inline-block;
      text-decoration: underline; }
  header .idioma-select {
    background-image: url("../images/Ico-mundi.svg");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    display: inline-block;
    border-radius: 80px;
    color: black;
    border: 1px solid black;
    z-index: 12; }
    header .idioma-select .select-idioma {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      margin: 0;
      padding: 10px 40px;
      width: auto;
      display: block;
      line-height: 1em;
      font-size: 14px;
      background-color: transparent;
      background-image: url("../images/cf7-select.svg");
      background-position: center right;
      background-repeat: no-repeat; }
  header h1.logo {
    display: block;
    margin: 0; }
    header h1.logo img {
      display: block;
      transition: var(--transition);
      margin: 0 auto;
      max-width: 140px; }
  header ul {
    font-size: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    text-transform: uppercase;
    font-display: 500;
    display: block;
    text-align: center; }
    header ul li {
      display: inline-block;
      line-height: 1em; }
      header ul li a {
        text-decoration: none;
        color: black;
        border-radius: 100px;
        border: 1px solid transparent;
        padding: 7px 15px 5px;
        display: inline-block; }
        header ul li a:hover {
          text-decoration: none;
          border-color: black;
          color: black; }
      header ul li + li {
        margin-left: 1em; }
  header.is-contrast {
    box-shadow: 0px 0px 6px -4px rgba(0, 0, 0, 0.5);
    padding: 15px 0; }

@media (max-width: 991px) {
  header {
    max-width: 100vw;
    /*btn ctrole menu */
    /* menu ativo */ }
    header h1.logo {
      z-index: 11;
      margin: 0 auto; }
    header .idioma-select .select-idioma {
      width: auto;
      display: block;
      line-height: 1em;
      height: 30px;
      color: transparent;
      font-size: 0;
      padding: 0;
      width: 60px; }
    header .menu {
      position: fixed;
      background-color: var(--bs-yellow);
      left: 0;
      top: 0;
      width: 0;
      height: 0;
      padding: 2em;
      opacity: 0;
      overflow: scroll;
      transform: translate(-100vw, 0);
      transition: var(--transition);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      display: flex;
      height: 100vh;
      width: 100vw; }
      header .menu ul {
        text-align: center;
        display: block; }
        header .menu ul li {
          display: block;
          font-size: 1.5em;
          margin: 1.5em 0; }
    header .menu-btn {
      cursor: pointer;
      width: 44px;
      height: 44px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      position: absolute;
      z-index: 11;
      left: 0;
      top: calc(50% - 22px); }
    header .menu-btn .bar {
      width: 18px;
      height: 2px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: black;
      transition: var(--transition);
      border-radius: 3px; }
      header .menu-btn .bar:nth-of-type(2) {
        top: calc(50% - 7px); }
      header .menu-btn .bar:nth-of-type(3) {
        top: calc(50% + 7px); }
    header.menu-ativo.is-hidden {
      top: 0; }
    header.menu-ativo #menu {
      transform: none;
      opacity: 1; }
    header.menu-ativo .menu-btn .bar {
      background-color: var(--bs-dark);
      top: 50%; }
      header.menu-ativo .menu-btn .bar:nth-of-type(1) {
        display: none; }
      header.menu-ativo .menu-btn .bar:nth-of-type(2) {
        transform: translate(-50%, 0%) rotate(45deg); }
      header.menu-ativo .menu-btn .bar:nth-of-type(3) {
        transform: translate(-50%, 0%) rotate(-45deg); }
    header.ativo .menu-btn .bar {
      background-color: white; } }
/*---------------------------------------
footer
---------------------------------------*/
footer {
  font-size: 16px;
  line-height: 1.2em;
  z-index: 3;
  background-color: white; }
  footer a:not(.btn) {
    color: black;
    text-decoration: underline;
    display: inline-block; }
    footer a:not(.btn):before {
      z-index: -1;
      content: '';
      display: block;
      position: absolute;
      left: -8px;
      right: -8px;
      bottom: -3px;
      top: -3px;
      border-radius: 100px;
      background-color: transparent;
      transition: var(--transition); }
    footer a:not(.btn):hover {
      text-decoration: none; }
      footer a:not(.btn):hover:before {
        background-color: var(--bs-yellow); }
  footer .logo {
    max-width: 140px;
    display: inline-block; }
  footer .copytight {
    font-size: 14px; }
  footer .endereco {
    text-align: center; }
    footer .endereco .cidade {
      display: inline-block;
      width: 90px; }
  footer p {
    margin: 0; }
  footer .sm .btn {
    border-width: 1px;
    font-size: 16px;
    padding: 0.7em 1.2em;
    margin-bottom: 4px; }

a.btn-whats {
  z-index: 20;
  position: fixed;
  right: 1em;
  bottom: 1em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/whatsapp.svg");
  width: 52px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: var(--bs-yellow);
  cursor: pointer; }
  a.btn-whats:hover {
    filter: brightness(1.2);
    box-shadow: 0px 0px 6px -4px rgba(0, 0, 0, 0.5); }

@media (min-width: 768px) {
  footer .endereco {
    text-align: left; } }
@media (min-width: 1200px) {
  footer .row.infos {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    footer .row.infos .logo {
      min-width: 140px; }
    footer .row.infos .endereco {
      max-width: 377px;
      text-align: left; }
    footer .row.infos .col {
      width: auto; } }
/*---------------------------------------
sessoes de tela cheia
---------------------------------------*/
.strip-screen {
  min-height: 400px; }

@media (min-width: 992px) {
  .strip-screen {
    height: calc( 100svh - 80px);
    max-height: 1000px; } }
@media (max-width: 767px) {
  .swiper-clientes {
    margin-top: 2em; }
    .swiper-clientes .swiper-wrapper {
      flex-direction: row;
      flex-wrap: wrap; }
      .swiper-clientes .swiper-wrapper .swiper-slide {
        display: flex;
        align-items: center;
        min-height: 100px;
        max-height: 100px;
        padding: 20px;
        text-align: center; }
        .swiper-clientes .swiper-wrapper .swiper-slide img {
          display: block;
          width: 100%;
          height: 100%;
          max-height: 80px;
          object-fit: contain; } }
@media (min-width: 768px) {
  .swiper-clientes .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-left: -30px;
    margin-right: -30px; }
    .swiper-clientes .swiper-wrapper .swiper-slide {
      padding: 40px 20px; }
      .swiper-clientes .swiper-wrapper .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain; } }
/*---------------------------------------
sessao banner
---------------------------------------*/
.texto-destaque {
  position: fixed;
  height: calc(100vh - 80px);
  width: 100%;
  left: 0;
  box-sizing: border-box;
  inset: 0;
  top: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  transform: translate(0, 4%); }

.texto-digitando {
  display: block;
  flex: none;
  margin: 0;
  font-weight: 300;
  line-height: 0.8;
  text-align: left;
  width: auto;
  max-width: 100vw;
  color: white; }

/* Cursor */
.texto-digitando::after {
  content: "|";
  font-weight: 100;
  animation: piscar-cursor 0.7s steps(1) infinite;
  opacity: 0.5; }

.texto-digitando.finalizado::after {
  display: none; }

@keyframes piscar-cursor {
  50% {
    opacity: 0; } }
/* banner -------------- */
.swiper-banner {
  opacity: 0;
  width: 100%;
  height: calc(100svh - 80px);
  animation: revelarImagem 0.8s ease forwards;
  animation-delay: 2s;
  z-index: 3; }
  .swiper-banner .whats-news {
    position: absolute;
    left: 0;
    width: 25%;
    padding: 0 1em;
    bottom: 2em;
    text-transform: uppercase;
    font-weight: 700; }
  .swiper-banner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center; }
    .swiper-banner .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: scale(60%); }
    .swiper-banner .swiper-slide .texto {
      position: absolute;
      left: 25%;
      width: 50%;
      padding: 0 1em;
      bottom: 2em;
      text-align: center;
      text-transform: uppercase; }

/* img to video -------------- */
.img-video {
  position: relative;
  width: 100%;
  height: 100%;
  /* 100% da tela — troque para height:100% se for usar dentro de uma seção */
  overflow: hidden;
  z-index: 1; }
  .img-video div {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    /* só o fade fica de transition fixa */
    transform-origin: center center;
    will-change: transform, opacity; }
    .img-video div.is-active {
      opacity: 1;
      z-index: 2; }
    .img-video div img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }

@keyframes revelarImagem {
  from {
    opacity: 0;
    visibility: hidden; }
  to {
    opacity: 1;
    visibility: visible; } }
@media (max-width: 991px) {
  .banner-home {
    aspect-ratio: 1/1;
    max-height: calc(100vh - 100px); }

  .texto-destaque {
    position: absolute;
    height: auto;
    width: auto;
    aspect-ratio: 4/5;
    top: 0;
    transform: translate(-1%, 2%); }

  .swiper-banner {
    font-size: 16px;
    height: auto;
    aspect-ratio: 4/5; }
    .swiper-banner .whats-news {
      width: 170px;
      padding: 0 5%; }
    .swiper-banner .swiper-slide img {
      transform: scale(90%); }
    .swiper-banner .swiper-slide .texto {
      position: absolute;
      left: 170px;
      width: calc(100% - 170px);
      text-align: right;
      text-transform: uppercase;
      padding: 0 5% 0 0; }
    .swiper-banner .swiper-pagination .swiper-pagination-bullet {
      font-size: 0; } }
@media (min-width: 992px) {
  .banner-home {
    height: calc(100vh - 60px); }

  .swiper-banner .swiper-pagination {
    max-width: 25%;
    margin-left: 75%;
    padding-right: 1.8rem;
    text-align: right;
    bottom: 2rem; }
    .swiper-banner .swiper-pagination .swiper-pagination-bullet {
      font-weight: bold;
      line-height: 1em;
      color: black;
      opacity: 1 !important;
      background-color: transparent;
      padding: 0 0.2em 0 0.1em;
      width: auto;
      border-radius: 0;
      height: auto;
      border-bottom: 2px solid transparent; }
      .swiper-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: transparent;
        width: auto;
        border-bottom: 2px solid black; } }
/* Indicador */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 22px;
  height: 22px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  animation: scroll-indicator 1.5s infinite;
  z-index: 10; }

@keyframes scroll-indicator {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px) rotate(45deg); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px) rotate(45deg); } }
