@charset "UTF-8";
@font-face {
  font-family: "Antro Vectra";
  src: url("../font/antro_vectra/Antro_Vectra_Bolder.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
strong {
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus {
  outline: 0;
}

html, body, #root {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: antialised;
  font-family: "skolar-sans-latin", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  background-color: #171615;
}

body, input, button, textarea {
  font-family: "skolar-sans-latin", sans-serif;
}

p {
  font-size: 1.8rem;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 2.4rem;
}

h6 {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  font-size: 1.6rem;
}

ul {
  list-style: none;
}

ul li {
  font-size: 1.6rem;
}

button {
  cursor: pointer;
}

.only-mobile {
  display: none !important;
}

@media (orientation: portrait) and (max-width: 600px) {
  .only-mobile {
    display: block !important;
  }
  .only-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 1201px) {
  p {
    font-size: 1.5rem;
  }
}
.goldButton {
  background-color: #d9a522;
  padding: 1.8rem 4.4rem 2rem;
  border: none;
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  font-family: "skolar-sans-latin", sans-serif;
  transition: filter 0.2s;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  place-items: center;
  justify-content: center;
  z-index: 999;
  width: fit-content;
  height: auto;
  cursor: pointer;
}

.goldButton:hover {
  filter: brightness(0.8);
}

.grayButton {
  background-color: transparent;
  padding: 1.5rem 1.3rem 1.7rem;
  font-size: 2rem;
  color: #575656;
  border-radius: 5px;
  font-weight: 700;
  transition: filter 0.2s;
  display: flex;
  place-items: center;
  justify-content: center;
  z-index: 999;
  border: 1px solid #575656;
  width: 30.6rem;
  line-height: 1;
}

.grayButton:hover {
  filter: brightness(0.8);
}

.subtitle {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 100%;
  letter-spacing: -0.015em;
}

@media screen and (max-width: 600px) {
  .goldButton {
    padding: 1.1rem 2.5rem 1.3rem;
    font-size: 1.6rem;
    border-radius: 5px;
  }
  .grayButton {
    background-color: transparent;
    padding: 1.2rem 2.9rem 1.3rem;
    font-size: 1.6rem;
    font-weight: 600;
    width: fit-content;
  }
  .subtitle {
    font-size: 3.2rem;
  }
}
.text {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.015em;
  color: #485163;
}

#control-nav {
  display: none;
}

header {
  min-height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #3c3c3c;
  z-index: 9;
  display: flex;
  transition: top 0.3s;
  opacity: 0.9;
}

header .logo {
  display: flex;
  place-items: center;
  justify-content: center;
}

header .logo .logoMenu {
  padding: 20px 50px;
  z-index: 100;
}

header .logo .logoMenu img {
  width: 166px;
}

header nav {
  width: 100%;
  align-self: center;
  opacity: 1;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 5rem;
}

header nav ul li {
  margin-left: 4rem;
  align-self: center;
}

header nav ul li a {
  color: #c8b08b;
  font-weight: 700;
  transition: color 0.2s;
}

header nav ul li a:hover {
  color: #f5f5f7;
}

/* ===== menu mobile (dropdown compacto, redesign 2026) ===== */
@media screen and (max-width: 767px) {
  header {
    opacity: 1;
    transition: background-color 0.3s ease;
  }
  header:has(#control-nav:checked) {
    background: #575656;
  }
  header .logo {
    width: auto;
  }
  header .logo .logoMenu {
    padding: 1.2rem 2rem;
  }
  header .logo .logoMenu img {
    width: 8rem;
    height: auto;
  }
  header .control-nav,
  header .control-nav-close {
    display: none;
  }
  header .menuicon {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: auto;
    cursor: pointer;
    z-index: 12;
  }
  header .menuicon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-top: 0.6rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  header .menuicon span:first-child {
    margin-top: 0;
  }
  header nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    width: 100%;
    background: #575656;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 8;
    transition: opacity 0.3s ease;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    padding: 2.4rem 3.5rem 3rem;
    margin: 0;
  }
  header nav ul li {
    text-align: left;
    margin: 0 0 1.8rem;
    width: auto;
    font-size: inherit;
    align-self: flex-start;
  }
  header nav ul li:last-child {
    margin-bottom: 0;
  }
  header nav ul li a {
    display: inline-block;
    font-family: "skolar-sans-latin", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.7;
    padding-left: 1.5rem;
  }
  header nav ul li.menuactive {
    position: relative;
  }
  header nav ul li.menuactive::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #d9a522;
  }
  header nav ul li.menuactive a {
    font-weight: 500;
    opacity: 1;
  }
  #control-nav:checked ~ nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #control-nav:checked ~ .menuicon span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  #control-nav:checked ~ .menuicon span:nth-child(2) {
    opacity: 0;
  }
  #control-nav:checked ~ .menuicon span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}
.video-container {
  display: flex;
  flex-direction: column;
  background-color: #171615;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  place-items: center;
  margin-top: 2rem;
}

.video-container .intro-video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  top: 0;
}

.video-container .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: #0b0b0b;
  opacity: 0.5;
}

.video-container .intro-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.video-container .intro-text h1 {
  font-size: 6.4rem;
  font-weight: 600;
  font-family: "skolar-sans-latin", sans-serif;
}
.video-container .intro-text img {
  width: 40rem;
}

@media screen and (max-width: 600px) {
  .video-container {
    background-color: #171615;
  }
  .video-container .intro-video {
    aspect-ratio: 36/42;
    height: auto;
    width: 100vw;
  }
  .video-container .overlay {
    background: #171615;
  }
  .video-container .intro-text {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    z-index: 3;
    gap: 5px;
    align-items: center;
  }
  .video-container .intro-text h1 {
    font-size: 2.6rem;
    font-weight: 600;
    font-family: "skolar-sans-latin", sans-serif;
  }
  .video-container .intro-text img {
    width: 16rem;
    height: 6rem;
  }
}
.selos-section {
  background-color: #171615;
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
  place-items: center;
  padding: 12rem 0 6rem;
}

.selos-section h2 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 5.5rem;
}

.selos-section .selos {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.selos-section .text-container {
  display: flex;
  width: 80%;
  margin-top: 5.3rem;
  margin-bottom: 5.4rem;
  gap: 3.5rem;
  align-items: center;
  justify-content: center;
}

.selos-section .text-container p {
  font-size: 1.2rem;
  color: #d9d9d9;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 600px) {
  .selos-section {
    padding: 5rem 2rem;
    z-index: 10;
    margin-top: -4rem;
  }
  .selos-section .selos {
    width: 90vw;
    flex-direction: row;
    gap: 1.2rem;
    row-gap: 1.6rem;
  }
  .selos-section .selos img {
    width: 8.4rem;
  }
  .selos-section h2 {
    font-size: 2rem;
    width: 28rem;
    line-height: 1.1;
    margin-bottom: 3.5rem;
  }
  .selos-section .text-container {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    margin-top: 2.8rem;
    margin-bottom: 3.6rem;
    width: 90%;
  }
  .selos-section .text-container p {
    font-size: 1rem;
  }
}
.padrao {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #575656;
}

.padrao .top {
  display: flex;
  background-color: #575656;
}

.padrao .top .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  place-items: center;
  width: 64vw;
  color: #fff;
}

.padrao .top .left .content {
  max-width: 43.4rem;
  z-index: 1;
}

.padrao .top .left .content h2 {
  font-size: 2rem;
  line-height: 120%;
  text-transform: uppercase;
  color: #d9a522;
  font-weight: 700;
}

.padrao .top .left .content h4 {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 120%;
  margin: 1.5rem 0;
}

.padrao .top .left .content p {
  font-weight: 400;
  font-size: 2rem;
  line-height: 120%;
  margin-bottom: 3.7rem;
}

.padrao .top .left .content .goldButton {
  width: 38rem;
}

.padrao .top .video {
  z-index: 1;
  border: none;
  margin-left: auto;
  min-width: 60rem;
}

.padrao .padrao-textura {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.padrao .bottom {
  display: flex;
  background-color: #d9a522;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 13rem;
  padding: 3.3rem;
  z-index: 2;
}
.padrao .bottom img {
  width: 38rem;
}

.padrao .bottom h4 {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 100%;
}

@media screen and (max-width: 600px) {
  .padrao {
    padding: 0;
  }
  .padrao .top {
    flex-direction: column;
    place-items: center;
    padding-bottom: 0rem;
  }
  .padrao .top .padrao-textura {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .padrao .top .left {
    padding: 4.7rem 0 6rem;
    width: 100%;
    position: relative;
  }
  .padrao .top .left .content {
    max-width: 85vw;
    width: 85vw;
    z-index: 1;
  }
  .padrao .top .left .content .goldButton {
    width: fit-content;
  }
  .padrao .top .left .content h2 {
    font-size: 1.2rem;
  }
  .padrao .top .left .content h4 {
    font-size: 2.4rem;
    margin: 1rem 0 2.5rem;
  }
  .padrao .top .left .content p {
    font-size: 1.6rem;
    line-height: 120%;
    margin-bottom: 3rem;
  }
  .padrao .top .video {
    max-width: 100%;
    margin: 0;
    min-width: 90%;
  }
  .padrao .bottom {
    flex-direction: column;
    gap: 7px;
    padding: 2.4rem 0;
  }
  .padrao .bottom img {
    max-width: 70vw;
  }
  .padrao .bottom h4 {
    font-size: 1.6rem;
  }
}
.script {
  font-family: "Antro Vectra", cursive;
  color: #ffffff;
  font-weight: 700;
  font-size: 6.6rem;
}

.tecnologias-2026 {
  background-color: #171615;
  color: #fff;
  padding: 10rem 10vw;
  display: flex;
  flex-direction: column;
  /* reserva distância de scroll pra "prender" a seção enquanto troca os 7 itens */
  min-height: 550vh;
}

.tecnologias-2026 .intro h2 {
  font-weight: 600;
  font-size: 4rem;
  line-height: 120%;
  margin-bottom: 11rem;
}

.tecnologias-2026 .content {
  position: sticky;
  top: 10rem;
  display: flex;
  gap: 10rem;
  width: 100%;
  max-width: 130rem;
  margin: 0 auto;
  text-align: left;
  align-items: flex-start;
}

.tecnologias-2026 .fotos {
  position: relative;
  flex: 1;
  max-width: 48rem;
  width: 100%;
  aspect-ratio: 478/528;
  overflow: hidden;
  height: auto;
}

.tecnologias-2026 .fotos .foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.tecnologias-2026 .fotos .foto.active {
  opacity: 1;
}

.tecnologias-2026 .lista {
  flex: 1;
  align-self: center;
}
.tecnologias-2026 .lista h4 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #d9a522;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 2rem;
}

/* "janela" fixa que esconde o resto da lista — é o overflow:hidden
   aqui + o transform na <ul> de dentro que criam o efeito de a lista
   subir sozinha conforme rola a página. O mask-image esmaece os itens
   bem no topo/base da janela em vez de cortar seco. */
.tecnologias-2026 .lista-viewport {
  position: relative;
  overflow: hidden;
  height: 25rem;
  mask-image: linear-gradient(to bottom, transparent 0, black 3rem, black calc(100% - 3rem), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 3rem, black calc(100% - 3rem), transparent 100%);
}

.tecnologias-2026 .lista-itens li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tecnologias-2026 .lista-itens li h3 {
  font-size: 3.2rem;
  font-weight: 600;
  transition: opacity 0.2s;
  opacity: 0.4;
}

.tecnologias-2026 .lista-itens li .link {
  color: #d9a522;
  font-size: 1.8rem;
  text-decoration: underline;
  font-weight: 300;
  opacity: 0.4;
}

.tecnologias-2026 .lista-itens li.active h3 {
  opacity: 1;
}
.tecnologias-2026 .lista-itens li.active .link {
  opacity: 1;
}

.tecnologias-2026 .goldButton {
  margin-top: 6rem;
}

/* carrossel mobile — some hoje escondido, o desktop usa o efeito de
   scroll acima (.content). No mobile trocamos por um scroll horizontal
   nativo (scroll-snap), sem depender de JS. */
.tecnologias-2026-mobile {
  display: none;
}

@media screen and (max-width: 600px) {
  .script {
    font-size: 3.6rem;
    display: block;
  }
  .tecnologias-2026 {
    min-height: 0;
    padding: 6rem 0 6rem;
  }
  .tecnologias-2026 .intro {
    width: 85vw;
    margin: 0 auto;
  }
  .tecnologias-2026 .intro h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .tecnologias-2026 .content {
    display: none;
  }
  .tecnologias-2026-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tecnologias-2026-mobile .cards-swiper {
    width: 100%;
    padding-bottom: 3.4rem;
  }
  .tecnologias-2026-mobile .swiper-slide {
    width: 233px;
    cursor: grab;
  }
  .tecnologias-2026-mobile .card img {
    width: 100%;
    height: 258px;
    object-fit: cover;
    display: block;
  }
  .tecnologias-2026-mobile .card h3 {
    margin-top: 1.6rem;
    font-size: 2rem;
    font-weight: 600;
  }
  .tecnologias-2026-mobile .goldButton {
    margin-top: 0rem;
  }
}
.agradavel {
  background-color: #171615;
  color: #fff;
  display: flex;
  justify-content: center;
  place-items: center;
  gap: 10rem;
  position: relative;
  overflow-y: hidden;
  width: 113rem;
}

.agradavel video {
  margin-right: auto;
}

.agradavel .right {
  display: flex;
  flex-direction: column;
  max-width: 60rem;
  align-items: flex-end;
  position: absolute;
  right: 0;
  background: linear-gradient(90deg, rgba(23, 22, 21, 0) 0%, rgba(23, 22, 21, 0.8) 20%, #171615 100%);
  height: 100%;
  justify-content: center;
}

.agradavel .right h2 {
  font-size: 4rem;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-align: right;
  color: #d9a522;
  width: 30rem;
}

.agradavel .right p {
  font-size: 2.2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  text-align: right;
  color: #ffffff;
  margin: 3rem 0;
}

@media screen and (max-width: 600px) {
  .agradavel {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 4.7rem;
    width: 100vw;
  }
  .agradavel video {
    aspect-ratio: 36/26;
    width: 100vw;
    height: auto;
    object-fit: cover;
  }
  .agradavel .right {
    position: unset;
    align-items: center;
    margin-top: 0;
    background: none;
    padding-top: 0;
    width: 100vw;
  }
  .agradavel .right h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.2rem;
  }
  .agradavel .right p {
    font-size: 1.6rem;
    text-align: center;
    width: 28rem;
    margin: 0 auto 2.9rem;
  }
}
.cada-detalhe {
  background-color: #171615;
  color: #fff;
  padding: 10rem 7vw;
  position: relative;
}

.cada-detalhe h2 {
  color: #d9a522;
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 9rem;
}

.cada-detalhe .cards-swiper {
  position: relative;
  width: 100%;
  padding: 0 6rem 5rem;
}

.cada-detalhe .card {
  background: #575656;
  border-radius: 20px;
  overflow: hidden;
  height: 54rem;
  padding: 4.8rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: grab;
  width: 40rem !important;
}
.cada-detalhe .swiper-slide {
  width: 40rem !important;
}

.cada-detalhe .swiper-pagination {
  position: relative;
  margin-top: 3rem;
}

.cada-detalhe .swiper-pagination-bullet {
  background: #575656;
  opacity: 1;
  width: 1rem;
  height: 1rem;
}

.cada-detalhe .swiper-pagination-bullet-active {
  background: #d9a522;
}

.cada-detalhe .swiper-button-prev,
.cada-detalhe .swiper-button-next {
  color: #d9a522;
  top: 55%;
}

.cada-detalhe .swiper-button-prev::after,
.cada-detalhe .swiper-button-next::after {
  font-size: 2.2rem;
  font-weight: 700;
}

.cada-detalhe .swiper-button-prev {
  left: 4rem;
}

.cada-detalhe .swiper-button-next {
  right: 4rem;
}

.cada-detalhe .swiper-button-disabled {
  opacity: 0.35;
}

.cada-detalhe .card img {
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 338/260;
  margin: 5rem 0 2rem;
  border-radius: 20px;
}

.cada-detalhe .card h3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.cada-detalhe .card p {
  font-size: 2.2rem;
  line-height: 120%;
  margin: 0 2rem 2.4rem;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .cada-detalhe {
    padding: 8rem 2rem 0rem;
  }
  .cada-detalhe h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .cada-detalhe .cards-swiper {
    padding: 0 0 5rem;
  }
  .cada-detalhe .card {
    width: 233px !important;
    height: 335px;
    border-radius: 14px;
    padding: 2rem 0 0;
  }
  .cada-detalhe .swiper-slide {
    width: 233px !important;
  }
  .cada-detalhe .card h3 {
    font-size: 1.7rem;
  }
  .cada-detalhe .card img {
    margin: 2rem 0 2rem;
    border-radius: 14px;
  }
  .cada-detalhe .card p {
    font-size: 1.5rem;
    margin: 0 auto;
    width: 90%;
  }
  .cada-detalhe .swiper-button-prev,
  .cada-detalhe .swiper-button-next {
    display: none;
  }
  .cada-detalhe .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.especialistas {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  position: relative;
}

.especialistas-back {
  position: absolute;
  bottom: 0;
  left: 0;
}

.especialistas .bloco {
  display: flex;
  overflow: hidden;
  z-index: 4;
}
.especialistas .bloco img {
  width: 60vw;
  display: block;
  height: auto;
  object-fit: cover;
}

.especialistas .bloco .texto {
  z-index: 1;
  padding: 12rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(23, 22, 21, 0) 0%, #171615 35%);
  margin-left: -12vw;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.especialistas .bloco.laydir .texto {
  margin-right: auto;
}

.especialistas .bloco.debora .texto {
  margin-left: auto;
  background: linear-gradient(270deg, rgba(23, 22, 21, 0) 0%, #171615 35%, transparent 100%);
  text-align: left;
  align-items: flex-start;
  margin-right: -12vw;
}
.especialistas .bloco.debora .texto h3 {
  border-left: 1px solid rgba(206, 206, 206, 0.8);
  border-right: none;
  padding-left: 3rem;
}

.especialistas .bloco h3 {
  color: #d9a522;
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
  margin-bottom: 1.6rem;
  width: 37.5rem;
  border-right: 1px solid rgba(206, 206, 206, 0.8);
  padding-right: 3.3rem;
}

.especialistas .bloco p {
  font-size: 1.8rem;
  line-height: 150%;
  width: 40.5rem;
  font-weight: 300;
}

@media screen and (max-width: 600px) {
  .especialistas {
    gap: 6rem;
    padding-bottom: 6.7rem;
  }
  .especialistas-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .especialistas .bloco {
    display: flex;
    flex-direction: column;
  }
  .especialistas .bloco img {
    width: 100vw;
    height: auto;
  }
  .especialistas .bloco .texto {
    z-index: 1;
    padding: 0;
    color: #fff;
    background: linear-gradient(90deg, rgba(23, 22, 21, 0) 0%, #171615 35%);
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
  .especialistas .bloco .texto h3 {
    border-left: 1px solid rgba(206, 206, 206, 0.8);
    border-right: none;
    padding-left: 1.6rem;
  }
  .especialistas .bloco.laydir .texto {
    margin-right: auto;
  }
  .especialistas .bloco.debora .texto {
    margin-left: 0;
    background: linear-gradient(270deg, rgba(23, 22, 21, 0) 0%, #171615 35%, transparent 100%);
    text-align: left;
    align-items: flex-start;
    margin-right: 0;
  }
  .especialistas .bloco.debora .texto h3 {
    border-left: 1px solid rgba(206, 206, 206, 0.8);
    border-right: none;
    padding-left: 1.6rem;
  }
  .especialistas .bloco h3 {
    color: #d9a522;
    font-weight: 700;
    font-size: 2rem;
    line-height: 120%;
    margin-bottom: 0rem;
    width: 85%;
    border-right: none;
    padding-right: 0;
    margin: 0 auto;
  }
  .especialistas .bloco p {
    font-size: 1.6rem;
    line-height: 130%;
    width: 85%;
    margin: 0 auto;
  }
}
.internacional {
  background-color: #575656;
  color: #fff;
  display: flex;
  justify-content: center;
  place-items: center;
  gap: 20rem;
  position: relative;
  margin-top: -2px;
  padding: 7.5rem 0;
}
.internacional .left {
  width: 40rem;
}

.internacional h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 120%;
  color: #d9a522;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.internacional h4 {
  margin: 1.6rem 0 2.2rem;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 120%;
  color: #fff;
}

.internacional p {
  max-width: 40.8rem;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.2;
}

.internacional .lines {
  position: absolute;
}

@media screen and (max-width: 600px) {
  .internacional {
    flex-direction: column;
    height: auto;
    text-align: left;
    gap: 1.6rem;
    padding: 4.6rem 7% 6rem;
    margin-top: 0;
    align-items: flex-start;
  }
  .internacional .left {
    margin: 0 auto;
    width: 100%;
  }
  .internacional h2 {
    font-size: 1.2rem;
  }
  .internacional p {
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    width: 100%;
  }
  .internacional h4 {
    font-size: 2.2rem;
    margin: 0;
  }
}
.itero {
  background-color: #0b0b0b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  place-items: center;
  text-align: center;
  color: #fff;
  padding-top: 8.7rem;
}

.itero h2 {
  color: #d9a522;
  font-size: 4rem;
  line-height: 1.2;
}

.itero p {
  font-size: 2.2rem;
  line-height: 120%;
  margin-top: 3.6rem;
  margin-bottom: 3.6rem;
  width: 79rem;
  text-align: center;
}

.itero .video-container {
  position: relative;
}

.itero .video-container .itero-video {
  position: absolute;
  top: 15%;
  left: 17%;
  width: 67%;
}

@media screen and (max-width: 600px) {
  .itero {
    padding-top: 6.7rem;
  }
  .itero h2 {
    font-size: 2.2rem;
  }
  .itero p {
    font-size: 1.6rem;
    width: 85%;
    margin: 3rem auto 5rem;
  }
  .itero img {
    max-width: 100vw;
  }
}
.depoimentos {
  background-color: #171615;
  color: #fff;
  padding: 3.3rem 7vw 0;
  display: flex;
  flex-direction: column;
  place-items: center;
  position: relative;
}
.depoimentos .beneficios {
  display: flex;
  gap: 1.4rem;
  z-index: 4;
}
.depoimentos .beneficios p {
  width: 30.6rem;
  height: 20rem;
  padding: 7.4rem 2rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  background: #575656;
  text-align: left;
  border-radius: 20px;
}
.depoimentos .beneficios p b {
  font-weight: 800;
}
.depoimentos .wrap-depoimentos {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 13.5rem;
  padding-bottom: 21.5rem;
  z-index: 4;
  position: relative;
  padding-right: 14rem;
}
.depoimentos .wrap-depoimentos h2 {
  color: #d9a522;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  margin-right: 15rem;
}
.depoimentos .wrap-depoimentos p {
  font-size: 1.8rem;
  color: #f4f4f4;
  line-height: 120%;
}
.depoimentos .wrap-depoimentos h4 {
  font-size: 1.8rem;
  line-height: 120%;
  color: #6e6e6e;
  font-weight: 700;
  margin-top: 5.9rem;
}
.depoimentos .wrap-depoimentos .wrap-linha {
  display: flex;
  gap: 3rem;
}
.depoimentos .wrap-depoimentos .wrap-linha .linha {
  content: "";
  height: 43rem;
  border-right: 1px solid #8f8f8f;
}
.depoimentos .wrap-depoimentos .wrap-linha .right-depoimentos {
  position: relative;
  flex: 1;
  min-width: 0;
  width: 58rem;
}
.depoimentos .wrap-depoimentos .wrap-linha .right-depoimentos .slide {
  width: 58rem !important;
  cursor: grab;
}
.depoimentos .wrap-depoimentos .wrap-linha .right-depoimentos .swiper-wrapper {
  align-items: flex-start;
}
.depoimentos .wrap-depoimentos .wrap-linha .swiper-button-next {
  top: 30%;
  right: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  color: #d9a522;
  border: 1px solid;
  padding: 1.5rem;
}
.depoimentos .wrap-depoimentos .wrap-linha .swiper-pagination {
  position: absolute;
  bottom: 13rem;
  left: 41rem;
  width: fit-content;
}
.depoimentos .wrap-depoimentos .wrap-linha .swiper-pagination-bullet {
  background: #575656;
  opacity: 1;
  width: 1rem;
  height: 1rem;
}
.depoimentos .wrap-depoimentos .wrap-linha .swiper-pagination-bullet-active {
  background: #d9a522;
}
.depoimentos .especialistas-back {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 600px) {
  .depoimentos {
    padding: 4rem 7vw 0;
  }
  .depoimentos .beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    z-index: 4;
    justify-content: center;
  }
  .depoimentos .beneficios p {
    width: 15rem;
    height: 10rem;
    padding: 1.9rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
    border-radius: 12px;
  }
  .depoimentos .wrap-depoimentos {
    display: flex;
    flex-direction: column;
    gap: 4.4rem;
    align-items: flex-start;
    margin-top: 6.5rem;
    padding-bottom: 12rem;
    z-index: 4;
    position: relative;
    padding-right: 0;
  }
  .depoimentos .wrap-depoimentos h2 {
    font-size: 2.4rem;
    line-height: 1;
    margin-right: 0;
  }
  .depoimentos .wrap-depoimentos p {
    font-size: 1.6rem;
  }
  .depoimentos .wrap-depoimentos h4 {
    font-size: 1.6rem;
    line-height: 120%;
    margin-top: 3rem;
  }
  .depoimentos .wrap-depoimentos .wrap-linha {
    display: flex;
    gap: 3rem;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .linha {
    content: "";
    height: auto;
    border-right: 1px solid #8f8f8f;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .right-depoimentos {
    position: relative;
    flex: 1;
    min-width: 0;
    width: 70vw;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .right-depoimentos .slide {
    width: 70vw !important;
    cursor: grab;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .right-depoimentos .swiper-wrapper {
    align-items: flex-start;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .swiper-button-next {
    display: none;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .swiper-pagination {
    position: absolute;
    bottom: 7rem;
    left: 0;
    width: 100%;
  }
  .depoimentos .wrap-depoimentos .wrap-linha .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .depoimentos .especialistas-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.conhecer {
  background-color: #d9a522;
  color: #fff;
  display: flex;
  justify-content: center;
  place-items: center;
  gap: 13rem;
  position: relative;
  padding: 7.4rem 0;
}

.conhecer h2 {
  font-size: 3.2rem;
  line-height: 100%;
  color: #fff;
  width: 38.1rem;
}

@media screen and (max-width: 600px) {
  .conhecer {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    height: auto;
    padding: 5.4rem 0;
  }
  .conhecer h2 {
    font-size: 2.2rem;
    width: 28rem;
    margin: 0 auto;
  }
}
footer {
  background-color: #171615;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  width: 80vw;
  margin: auto;
}
footer .logo-footer {
  margin-bottom: 7rem;
  margin-top: 8rem;
  width: 276px;
}
footer .top {
  display: flex;
  justify-content: space-between;
}
footer .top p, footer .top a {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 120%;
}
footer .top .left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
footer .top .left a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
footer .top .right {
  display: flex;
  gap: 5rem;
}
footer .top .right .menu {
  display: flex;
  gap: 5rem;
}
footer .top .right .menu div {
  display: flex;
  flex-direction: column;
}
footer .top .right .menu div a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 200%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
footer .top .right .social-buttons {
  display: flex;
  justify-content: end;
  margin-top: auto;
  gap: 2.4rem;
}
footer .top .right .social-buttons img {
  margin: 0;
}

footer .bottom {
  width: 80vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 0.8rem;
  padding-bottom: 1.8rem;
  margin-top: 4rem;
}

footer .bottom p {
  font-size: 1.2rem;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 85vw;
    margin: 0 auto;
  }
  footer .logo-footer {
    margin: 5rem 0 5.4rem;
    width: 166px;
  }
  footer .top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  footer .top p, footer .top a {
    font-size: 1.5rem;
  }
  footer .top .left {
    gap: 9px;
  }
  footer .top .left a {
    gap: 1rem;
  }
  footer .top .left a svg {
    width: 15px;
    height: 15px;
  }
  footer .top .right {
    margin-top: 3.6rem;
    flex-direction: column;
    gap: 4rem;
  }
  footer .top .right .menu {
    gap: 4rem;
  }
  footer .top .right .menu div a {
    font-size: 1.2rem;
  }
  footer .top .right .social-buttons {
    margin-top: 0;
    gap: 1.6rem;
    justify-content: flex-start;
  }
  footer .top .right .social-buttons img {
    height: 16px;
  }
}
.zap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  cursor: pointer;
}

.zap img {
  height: 65px;
}

@media screen and (max-width: 600px) {
  .zap {
    right: 20px;
    bottom: 20px;
  }
  .zap img {
    height: 40px;
    width: 40px;
  }
}
#hw1 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/*# sourceMappingURL=home2026.css.map */
