/* Tusker Grotesk Regular */
@font-face {
  font-family: "Tusker Grotesk";
  src: url("/assets/TuskerGrotesk-2500Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Tusker Grotesk Semibold */
@font-face {
  font-family: "Tusker Grotesk";
  src: url("/assets/TuskerGrotesk-4500Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Tusker Grotesk Bold */
@font-face {
  font-family: "Tusker Grotesk";
  src: url("/assets/TuskerGrotesk-5700Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Clash Display Regular */
@font-face {
  font-family: "Clash Display";
  src: url("/assets/ClashDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* Clash Display Light */
@font-face {
  font-family: "Clash Display";
  src: url("/assets/ClashDisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* Clash Display Medium */
@font-face {
  font-family: "Clash Display";
  src: url("/assets/ClashDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* Clash Display Semibold */
@font-face {
  font-family: "Clash Display";
  src: url("/assets/ClashDisplay-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

/* Clash Display Bold */
@font-face {
  font-family: "Clash Display";
  src: url("/assets/ClashDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: black;
}

* {
  margin: 0;
  box-sizing: border-box;
}
.mobilebanner {
  display: none;
  @media only screen and (max-width: 768px) {
    display: block;
    width: 100%;
    height: 350px;
    background-image: url("/Images/PARTE-01-mobile.png");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.content {
  background-image: url("/Images/parte1.svg");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 6.3%;
  /* background-position: center center; */

  @media only screen and (max-width: 768px) {
    background-color: black;

    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 1540px) {
  .content {
    /* padding-block: 4%; */
  }
}

.image-container {
  width: 100%;

  overflow: hidden; /* Esconde o conteúdo que ultrapassa as bordas */
  border-radius: 8px; /* Bordas arredondadas para o contêiner */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a imagem cobrir todo o contêiner */
  border-radius: inherit; /* Herdar o arredondamento do contêiner */
}
.button {
  font-family: "Clash Display", sans-serif;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: #fff solid 1px;
  color: #fff;
  border-radius: 16px;
  font-size: 0.8em;
  cursor: pointer;
  width: 260px;
  height: 46px;
  transition: transform 0.3s ease;
}

.button:hover {
  position: relative;
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 200, 71, 0.8);
}
.button img {
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  animation: rotate 2s linear infinite;
}

.title {
  color: #fff;
  text-align: left;
  width: 100%;
  padding-inline: 100px;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  @media only screen and (max-width: 768px) {
    padding-inline: 20px;
    justify-content: center;
    align-items: center;
  }
}

.title h1 {
  font-size: 92px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  font-family: "Tusker Grotesk", sans-serif;
  @media only screen and (max-width: 768px) {
    display: none;
  }
}
.title h2 {
  display: none;

  @media only screen and (max-width: 768px) {
    display: block;
    font-size: 46px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
    font-family: "Tusker Grotesk", sans-serif;
  }
}

.title .black {
  color: #00c847;
  font-family: "Tusker Grotesk", sans-serif;
}
.green {
  color: #00c847;
  font-weight: 500;
}

.title p {
  font-size: 16px;
  font-weight: 300;
  max-width: 40%;
  line-height: 1.5em;
  text-align: justify;
  @media only screen and (max-width: 768px) {
    max-width: 100%;
    text-align: center;
  }
  font-family: "Clash Display", sans-serif;
}
.secondsection h1 {
  margin: 40px 0;
  padding: auto;
  color: #fff;
}
.secondsection {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza verticalmente */
  align-items: center; /* Centraliza horizontalmente */
  text-align: center;
  padding: 20px;
  color: #fff;
  @media only screen and (max-width: 768px) {
    padding: 0;
  }
}

.secondsection h1 {
  font-family: "Tusker Grotesk", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px; /* Espaço entre o título e o botão */
  max-width: 100%; /* Limita a largura para melhorar a legibilidade */
  line-height: 1.4;

  @media only screen and (max-width: 768px) {
    font-size: 18px;
  }
}

.secondsection button:hover {
  box-shadow: 0 0 20px rgba(0, 200, 71, 0.8), 0 0 40px rgba(0, 200, 71, 0.6);
  transform: scale(1.05);
}
.secondsection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit; /* Mantém o fundo existente */
  z-index: -1; /* Coloca atrás do conteúdo */
}

.video-container {
  position: relative;
  background-color: rgba(0, 0, 0, 0.6); /* Fundo com leve transparência */
  border-radius: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 800px;
  gap: 48px;
  margin: 20px auto;
  padding-bottom: 153px;
  padding-top: 100px;
  @media only screen and (max-width: 768px) {
    padding-inline: 20px;
    padding-bottom: 100px;
    padding-top: 50px;
    gap: 24px;
  }
}

.video-container::before {
  content: "";
  position: absolute;
  width: 716px;
  height: 430px;
  background-color: #00c847;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(50px); /* Ajuste para suavizar a elipse */
}
@media only screen and (max-width: 768px) {
  .video-container::before {
    width: 50px;
    height: 50px;
  }
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.secondbutton {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
  height: 70px;
  background-color: #00c847;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  font-family: "Clash Display", sans-serif;
  border: none;
  box-shadow: 0 0 10px rgba(69, 125, 89, 0.5);
  transition: transform 0.3s ease;
  @media only screen and (max-width: 768px) {
    font-size: 0.8em;
    height: 50px;
    margin-top: unset;
  }
}

.secondbutton:hover {
  transform: scale(1.05);
}

/* Swiper container */
/* Container do swiper com fundo dividido */

.notificacao,
.fundo {
  padding-top: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.notificacao {
  background-image: url("/Images/background.svg");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  @media only screen and (max-width: 768px) {
    background-image: url("/Images/backgriund-mobile.svg");
  }
}

.notificacao img,
.fundo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Outros estilos do swiper, mantendo o que você já tem */
.swiper-wrapper {
  display: flex;
}
.swiper-container {
  position: relative;
  top: 50%; /* Ajusta conforme necessário */
  z-index: 1; /* Coloca o Swiper acima da imagem */
  width: 80%; /* Ajusta a largura conforme necessário */
  max-width: 1000px;
  padding: 20px; /* Fundo com leve transparência para melhor legibilidade */
  border-radius: 16px;
  display: flex;
  flex-direction: column;

  overflow: hidden;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  @media only screen and (max-width: 768px) {
    padding: 0;
  }
}
.swiper-container h2 {
  color: #fff;
  font-family: "Tusker Grotesk", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  @media only screen and (max-width: 768px) {
    font-size: 18px;
  }
}
.top-swiper {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 60px;

  gap: 24px;
}
.top-swiper img {
  width: 40px;
  height: 40px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* Estilo da paginação (bolinhas) */
.swiper-container .swiper-pagination {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background-color: #fff !important;
  opacity: 0.8 !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background-color: #00c847 !important;
  width: 50px !important;
  border-radius: 4px !important;
  height: 1px;
}

.content-fifth {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1290px;
  margin: 0 auto;
  padding-inline: 100px;
  padding-block: 80px;
  gap: 40px;
  @media screen and (max-width: 768px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-fifth {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 24px;
}

.top-fifth h2 {
  color: #fff;
  font-size: 24px;
  font-family: "Tusker Grotesk", sans-serif;
  font-weight: 800;
  text-transform: uppercase;

  text-align: center;
  @media only screen and (max-width: 768px) {
    font-size: 18px;
    text-align: left;
  }
}
.top-fifth img {
  width: 100%;
  width: 40px;
  height: 40px;
}

.videos-fifth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  @media only screen and (max-width: 768px) {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.videoCard-fifth {
  border-radius: 16px;
  width: 100%;

  padding: 5px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videoCard-fifth:hover {
  transform: translateY(-5px);
}

.videoCard-fifth iframe {
  width: 100%;
  height: 200px;
  border-radius: 16px;
}

.quem-sou {
  background-image: url("/Images/Parte-05.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  @media only screen and (max-width: 768px) {
    background-image: url("/Images/parte05-mobile.png");
    width: 100%;

    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

.quem-sou-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-inline: 100px;
  height: 100%;
  margin: 0 auto;
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  @media only screen and (max-width: 768px) {
    padding-inline: 20px;
    padding-top: 100%;
  }
}
.container-fifth {
  width: 100%;
}
.quem-sou-button {
  padding-block: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;
  gap: 10px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid #00c847;
  @media only screen and (max-width: 768px) {
    width: 50%;
  }
}

.quem-sou-button h3 {
  font-size: 13px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  color: #00c847;
}

.quem-sou h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  padding-block: 25px;
  font-family: "Tusker Grotesk", sans-serif;
}

.quem-sou-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 20px;
  width: 40%;
  font-family: "Clash Display", sans-serif;
  @media only screen and (max-width: 768px) {
    width: 100%;
  }
}

.insta-button {
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;
  cursor: pointer;
  gap: 10px;
  border-radius: 15px;
  background: transparent;

  border: 1px solid #00c847;
  @media only screen and (max-width: 768px) {
    width: fit-content;
  }
}

.insta-button h3 {
  font-size: 18px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  color: #fff;
}

.section6 {
  background-image: url("/Images/Parte-06.webp");
  background-size: 130% auto;
  background-position: center;
  background-repeat: no-repeat;
  @media only screen and (min-width: 1441px) {
    background-size: contain;
  }
  @media only screen and (max-width: 768px) {
    background-image: url("/Images/desktop-mobile.png");
    width: 100%;

    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

.section6-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-right: 100px;
  padding-block: 100px;
  margin: 0 auto;
  max-width: 1440px;
}

@media only screen and (max-width: 768px) {
  .section6-content {
    padding-inline: 20px;
    padding-top: 100%;
  }
}

.section6-card {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 32px 48px;
  gap: 16px;
  width: 40%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0.3%,
    rgba(255, 255, 255, 0.05) 99.7%
  );
  transition: all 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .section6-card {
    width: 100%;
  }
}

.section6-card::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 60%;
  background: var(--VERDE, #00c847);
  border-radius: 1px;
  box-shadow: 0px 0px 13.1px 0px rgba(0, 200, 71, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.section6-card:hover {
  background: #00c847;
  transition: background-color 0.3s ease;
}

.section6-card:hover::before {
  background: #ffffff; /* Linha branca */
  box-shadow: 0px 0px 13.1px 0px rgba(255, 255, 255, 0.6); /* Sombra branca */
}

.section6-card-text h4 {
  color: #fff;
  font-family: "Clash Display";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section6-card-text p {
  color: #fff;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.section6-card:hover .section6-card-text h4,
.section6-card:hover .section6-card-text p {
  color: #ffffff; /* Texto branco */
  transition: color 0.3s ease;
}

.section6-card-icon img {
  transition: filter 0.3s ease;
}

.section6-card:hover .section6-card-icon img {
  filter: brightness(0) invert(1); /* Ícone branco */
}

.section7 {
  background-image: url("/Images/Parte-07.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7 {
    background-size: cover;
    padding-inline: 20px;
  }
}

.section7-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 50px;
  height: 100%;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-content {
    gap: 30px;
    padding-block: 20px;
  }
}

.section7-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section7-top-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  /* padding: 0 20px; */
  max-width: 100%; /* Define limite de largura para mobile */
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-top-text {
    /* padding: 0 10px; */
    gap: 15px; /* Reduz o espaçamento entre os elementos */
  }
}

.section7-top-text h3 {
  color: var(--BRANCO, #fff);
  font-family: "Tusker Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  max-width: 80%;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-top-text h3 {
    font-size: 24px;
    max-width: 100%;
  }
}

.section7-top-text span {
  color: var(--VERDE, #00c847);
}

.section7-top-text p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  max-width: 80%;
  padding: 0 10px;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-top-text p {
    font-size: 14px;
    max-width: 100%;
  }
}

.section7-swiper {
  display: flex;
  width: 100%;
  max-width: 1290px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  @media only screen and (max-width: 768px) {
    display: none;
  }
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-swiper {
    max-width: 100%;
  }
}

.section7-swiper-slide img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
  border-radius: 33px;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-swiper-slide img {
    height: 200px !important;
  }
}

.section7-bottom {
  display: flex;

  align-items: center;
  padding-inline: 86px;
  padding-block: 46px;
  gap: 88px;
  border-radius: 24px;
  border: 1px solid #fff;
  background: var(--Color, #131313);
  max-width: 1270px;
  margin: 0 auto;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-bottom {
    flex-direction: column;

    padding-inline: 20px;
    padding-block: 20px;
    gap: 30px;
    max-width: 100%;
  }
}

.section7-bottom-left h3 {
  color: var(--BRANCO, #fff);
  font-family: "Tusker Grotesk";
  font-size: 37px;
  font-weight: 700;
  line-height: normal;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-bottom-left h3 {
    font-size: 24px;
    text-align: center;
  }
}

.section7-bottom-left span {
  color: var(--VERDE, #00c847);
}

.section7-bottom-right {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-bottom-right {
    width: 100%;
  }
}

.section7-card {
  display: flex;
  position: relative;
  align-items: center;
  padding: 32px 48px;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0.3%,
    rgba(255, 255, 255, 0.05) 99.7%
  );
}

.section7-card:hover {
  display: flex;
  position: relative;
  align-items: center;
  padding: 32px 48px;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #00c847;
}

.customSvg {
  color: #ff0b0b;
}

.section7-card:hover .customSvg {
  color: #fff;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section7-card {
    padding: 20px;
    width: 100%;
  }
}

.section7-card::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 60%;
  border-radius: 1px;
  background: #ff0b0b;
  box-shadow: 0px 0px 13.1px 0px rgba(255, 11, 11, 0.4);
}

.section7-card:hover::before {
  background: #fff; /* Altera a cor do sombra quando o mouse passa sobre o card */
  box-shadow: 0px 0px 13.1px 0px rgba(255, 255, 255, 0.4);
}

.section7-card p {
  color: #fff;
  font-family: "Clash Display";
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
}

.section7-card:hover p {
  color: #fff;
  font-family: "Clash Display";
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
}

.section8 {
  background-image: url("/Images/Parte-09.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 170% auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  @media only screen and (min-width: 1441px) {
    background-size: contain;
    height: 50vh;
  }
}

.section8 {
  @media (max-width: 768px) {
    background-image: url("/Images/PARTE-09-MOBILE.png"); /* Imagem adaptada para mobile */
    height: auto; /* Ajusta a altura para se adaptar ao conteúdo */
    padding: 20px; /* Adiciona padding para espaçamento nas laterais */
    background-size: contain;
  }
}

.section8-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start; /* Alinha os elementos à esquerda */
  padding-left: 100px;
  width: 100%;
  padding-block: 50px;
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
}

.section8-content {
  @media (max-width: 768px) {
    height: 50vh;
    padding-left: 20px;
    padding-right: 20px;

    margin-top: 50px;
    max-width: 100%;
    align-items: flex-start; /* Alinha à esquerda no mobile */
    justify-content: flex-end;
  }
}

.section8-content h3 {
  color: var(--BRANCO, #fff);
  font-family: "Tusker Grotesk";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  width: 50%;
  line-height: normal;
  text-transform: uppercase;
}

.section8-content h3 {
  @media (max-width: 768px) {
    font-size: 22px;
    width: 100%;
    text-align: left; /* Alinha o h3 à esquerda */
  }
}

.section8-content button {
  border-radius: 16px;
  border: 1px solid var(--BRANCO, #fff);
  background: transparent;
  justify-content: center;
  padding-block: 14px;
  display: flex;
  align-items: center;
  width: 30%;
  gap: 5px;
  cursor: pointer;
}

.section8-content button:hover {
  border-radius: 16px;
  border: 1px solid var(--BRANCO, #fff);
  background: #fff;
  justify-content: center;
  padding-block: 14px;
  display: flex;
  align-items: center;
  width: 30%;
  gap: 5px;
  cursor: pointer;
}
.section8-content button:hover p {
  color: #00c847;
}

.arrowCustom {
  color: #fff;
}

.section8-content button:hover .arrowCustom {
  color: #00c847;
}

.section8-content button {
  @media (max-width: 768px) {
    width: 60%;
    margin: 0 auto 0 0; /* Alinha o botão à esquerda */
    padding-block: 12px;
  }
}

.section8-content p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.section8-content p {
  @media (max-width: 768px) {
    font-size: 12px;
    text-align: left; /* Alinha o parágrafo à esquerda */
  }
}

.section9 {
  background-image: url("/Images/Parte-10.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section9 {
  @media (max-width: 768px) {
    background-image: url("/Images/PARTE-10-MOBILE.jpg"); /* Imagem específica para mobile */
    background-size: cover;
    padding: 20px; /* Adiciona padding nas laterais para espaçamento */
    height: auto; /* Ajusta a altura para adaptar ao conteúdo */
  }
}

.section9-content {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: flex-end;
  padding-right: 100px;
  padding-block: 50px;
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
}

.section9-content {
  @media (max-width: 768px) {
    padding-right: 20px;
    padding-left: 20px;
    padding-block: 30px;
    max-width: 100%;
    align-items: center; /* Centraliza os elementos no mobile */
    margin-top: 500px;
    margin-bottom: 50px;
  }
}

.section9-card,
.section9-card-green {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30%;
  padding: 56px 40px;
  border-radius: 24px;
  background: var(--Color, #131313);
}

.section9-card,
.section9-card-green {
  @media (max-width: 768px) {
    width: 100%; /* Expande os cards para ocupar a largura total */
    padding: 20px; /* Reduz o padding dos cards */
    align-items: flex-start; /* Alinha o conteúdo dos cards à esquerda */
  }
}

.section9-card-top {
  display: flex;
  gap: 10px;
  align-items: center;
}

.section9-card-top h4 {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section9-card-top h4 {
  @media (max-width: 768px) {
    font-size: 14px;
    text-align: left;
  }
}

.section9-card p,
.section9-card-green p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section9-card p,
.section9-card-green p {
  @media (max-width: 768px) {
    font-size: 12px;
    text-align: left;
  }
}

.section9-card-green p {
  color: #000;
}

.section9-card-green {
  background: var(--VERDE, #00c847);
}

.section9-card:hover,
.section9-card-green:hover {
  background: #00c847; /* Fundo verde */
  transition: background-color 0.3s ease; /* Transição suave */
}

.section9-card:hover h4,
.section9-card:hover p,
.section9-card-green:hover h4,
.section9-card-green:hover p {
  color: #fff; /* Texto branco */
  transition: color 0.3s ease; /* Transição suave */
}

.section9-card-green:hover p {
  color: #fff; /* Ajusta o texto para branco no hover do card verde */
}
.section9-card:hover .section9-card-top img,
.section9-card-green:hover .section9-card-top img {
  filter: brightness(0) invert(1); /* Torna a imagem branca */
}

.section10 {
  background: #000;
}

.section10 {
  @media (max-width: 768px) {
    padding: 20px; /* Adiciona padding para melhor espaçamento em dispositivos móveis */
  }
}

.section10-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 80px;
  justify-content: center;
  align-items: center;
  padding-block: 50px;
  height: 100%;
}

.section10-content {
  @media (max-width: 768px) {
    padding-inline: 20px; /* Reduz o padding nas laterais */
    padding-block: 30px; /* Reduz o padding vertical */
    max-width: 100%;
    align-items: center; /* Centraliza o conteúdo */
  }
}

.section10-content h3 {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Tusker Grotesk";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 70%;
}

.section10-content h3 {
  @media (max-width: 768px) {
    font-size: 28px; /* Reduz o tamanho da fonte para dispositivos móveis */
    width: 100%; /* Expande para ocupar a largura total */
  }
}

.section10-row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.section10-row {
  @media (max-width: 768px) {
    flex-direction: column; /* Alinha os cards em coluna no mobile */
    gap: 20px; /* Ajusta o espaçamento entre os cards */
    align-items: center;
  }
}

.section10-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.section10-card {
  @media (max-width: 768px) {
    width: 100%; /* Expande os cards para a largura total */
    justify-content: center; /* Centraliza o conteúdo do card */
  }
}

.section10-card-text {
  max-width: 256px;
  height: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0.3%,
    rgba(255, 255, 255, 0.05) 99.7%
  );
}

.section10-card-text {
  @media (max-width: 768px) {
    padding: 20px; /* Reduz o padding interno para dispositivos móveis */
    align-items: center; /* Centraliza o conteúdo do card */
  }
}

.section10-card-text h4 {
  color: #fff;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section10-card-text h4 {
  @media (max-width: 768px) {
    font-size: 16px; /* Ajusta o tamanho da fonte */
    text-align: center; /* Centraliza o título */
  }
}

.section10-card-text p {
  color: #fff;
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.section10-card-text p {
  @media (max-width: 768px) {
    font-size: 12px; /* Ajusta o tamanho da fonte */
    text-align: center; /* Centraliza o parágrafo */
  }
}

.section10-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 24px;
  border: 0.5px solid #fff;
  padding-block: 40px;
}

.section10-bottom {
  @media (max-width: 768px) {
    padding-inline: 20px; /* Reduz o padding lateral no mobile */
    padding-block: 30px; /* Ajusta o padding vertical */
  }
}

.section10-bottom button {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 30%;
  border-radius: 16px;
  border: 1px solid var(--BRANCO, #fff);
  padding-block: 14px;
  background: transparent;
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 0%;
}

.section10-bottom button {
  @media (max-width: 768px) {
    width: 80%; /* Aumenta a largura do botão no mobile */
    margin: 0 auto; /* Centraliza o botão */
    padding-block: 12px;
  }
}

.section10-bottom p {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 70%;
}

.section10-bottom p {
  @media (max-width: 768px) {
    font-size: 14px; /* Ajusta o tamanho da fonte */
    width: 100%; /* Expande para ocupar a largura total */
  }
}

.section10-bottom span {
  font-weight: 500;
}

.custom-svg {
  --color1: #00c847; /* Cor para o círculo */
  --color2: white; /* Cor para o caminho */
}

.section10-card:hover .custom-svg {
  --color1: #fff; /* Cor para o círculo */
  --color2: #00c847; /* Cor para o caminho */
}

/* Hover nos cards */
.section10-card:hover .section10-card-text {
  background: #00c847;
  transition: background-color 0.3s ease;
}

.section10-card:hover img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.section10-card-text h4,
.section10-card-text p {
  color: #fff; /* Texto permanece branco */
}

/* Ajuste do hover */
.section10-card-text {
  transition: background-color 0.3s ease;
}

.section10-card:hover .section10-card-text h4,
.section10-card:hover .section10-card-text p {
  color: #fff;
}

.section11 {
  background-image: url("/Images/Parte-12.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.section11 {
  @media (max-width: 768px) {
    background-image: url("/Images/PARTE-12-MOBILE.jpg"); /* Imagem específica para mobile, se disponível */
    background-size: cover;
    height: auto;
    padding: 20px; /* Adiciona padding para espaçamento nas laterais */
  }
}

.section11-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
  padding-inline: 100px;
  padding-block: 50px;
  height: 100%;
}

.section11-content {
  @media (max-width: 768px) {
    padding-inline: 20px; /* Reduz o padding lateral para dispositivos móveis */
    padding-block: 30px; /* Reduz o padding vertical */
    max-width: 100%; /* Expande para ocupar toda a largura */
    gap: 15px; /* Reduz o espaçamento entre os elementos */
  }
}

.section11-content h3 {
  color: #fff;
  text-align: center;
  font-family: "Tusker Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.section11-content h3 {
  @media (max-width: 768px) {
    font-size: 28px; /* Reduz o tamanho da fonte para dispositivos móveis */
    padding-top: 10px; /* Adiciona espaçamento superior */
  }
}

.section11-content h5 {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-bottom: 40px;
}

.section11-content h5 {
  @media (max-width: 768px) {
    font-size: 14px; /* Reduz o tamanho da fonte */
    padding-bottom: 20px; /* Reduz o padding inferior */
  }
}

.section11-content img {
  border-radius: 60px;
  background: var(--Color, #131313);
  width: 783px;
  height: 454px;
}

.section11-content img {
  @media (max-width: 768px) {
    width: 100%; /* Ajusta a imagem para ocupar toda a largura */
    height: auto; /* Ajusta a altura automaticamente */
    max-width: 350px; /* Limita a largura máxima em dispositivos móveis */
  }
}

.section11-content p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 50%;
  text-align: center;
  padding-top: 30px;
}

.section11-content p {
  @media (max-width: 768px) {
    font-size: 12px; /* Reduz o tamanho da fonte */
    width: 100%; /* Expande o parágrafo para ocupar toda a largura */
    padding-top: 20px; /* Reduz o padding superior */
  }
}

.section11-content span {
  color: var(--VERDE, #00c847);
}

.section12 {
  position: relative;
  background-image: url("/Images/Parte-13.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.section12 {
  @media (max-width: 768px) {
    background-image: url("/Images/Parte-13-mobile.webp"); /* Imagem específica para mobile, se disponível */
    background-size: cover;
    height: auto;
    padding: 20px; /* Adiciona padding para espaçamento nas laterais */
  }
}

.section12-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.section12-content {
  @media (max-width: 768px) {
    position: relative; /* Remove o posicionamento absoluto no mobile */
    top: auto;
    left: auto;
    transform: none;
    gap: 20px; /* Reduz o espaçamento entre os elementos */
    padding-top: 20px; /* Adiciona padding superior */
  }
}

.section12-content button {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--BRANCO, #fff);
  background: transparent;
  padding-block: 14px;
  padding-inline: 24px;
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 0%;
  justify-content: center;
  width: 40%;
}

.section12-content button {
  @media (max-width: 768px) {
    width: 80%; /* Aumenta a largura do botão para ocupar mais espaço */
    font-size: 11px; /* Reduz o tamanho da fonte */
    padding-block: 12px;
  }
}

.section12-content h3 {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Tusker Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  width: 90%;
}

.section12-content h3 {
  @media (max-width: 768px) {
    font-size: 24px; /* Reduz o tamanho da fonte */
    width: 100%; /* Expande para ocupar a largura total */
    padding: 0 10px; /* Adiciona padding lateral para espaçamento */
  }
}
.section13 {
  background-image: url("/Images/Parte-14.webp");
  background-size: 140% auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;

  @media only screen and (min-width: 1441px) {
    background-size: contain;
    height: 50vh;
  }
}

.section13 {
  @media (max-width: 768px) {
    background-image: url("/Images/PARTE-14-MOBILE.jpg"); /* Imagem específica para mobile */
    background-size: contain; /* Ajusta a imagem para caber na largura da tela */
    background-position: center center; /* Centraliza a imagem vertical e horizontalmente */
    height: 85vh; /* Define uma altura maior para destacar a imagem */
    padding: 20px; /* Adiciona padding para espaçamento nas laterais */
  }
}

.section13-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-inline: 100px;
  padding-block: 50px;
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
}

.section13-content {
  @media (max-width: 768px) {
    padding-inline: 20px; /* Reduz o padding lateral para mobile */
    padding-block: 30px; /* Reduz o padding vertical */
    max-width: 100%; /* Expande para ocupar toda a largura */
    gap: 15px; /* Ajusta o espaçamento entre os elementos */
    display: block;
  }
}

.section13-top {
  display: flex;
  flex-direction: column;
}

.section13-top h3 {
  color: var(--BRANCO, #fff);
  font-family: "Tusker Grotesk";
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.section13-top h3 {
  @media (max-width: 768px) {
    font-size: 42px; /* Reduz o tamanho da fonte para mobile */
    text-align: center; /* Centraliza o título */
  }
}

.section13-bottom {
  display: flex;
  align-items: center;
  gap: 10px; /* Adiciona espaçamento entre os elementos */
}

.section13-bottom {
  @media (max-width: 768px) {
    justify-content: center;
  }
}

.section13-icon {
  border-radius: 16px;
  border: 1px solid var(--BRANCO, #fff);
  padding: 10px;
  margin-right: 10px;
}

.section13-icon {
  @media (max-width: 768px) {
    margin-right: 0; /* Remove o margin-right no mobile */
    padding: 4px;
  }
}

.section13-bottom h5 {
  color: #fff;
  font-family: "Clash Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section13-bottom h5 {
  @media (max-width: 768px) {
    font-size: 14px; /* Reduz o tamanho da fonte para mobile */
    text-align: center; /* Centraliza o texto */
  }
}

/* Estrutura da seção */
.section14 {
  background-image: url("/Images/Parte-15.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  justify-content: center;
}

.section14 {
  @media (max-width: 768px) {
    background-image: url("/Images/Parte-15-mobile.webp"); /* Imagem específica para mobile, se disponível */
    background-size: contain; /* Expande a imagem para caber na largura da tela */
    background-position: center center; /* Centraliza a imagem vertical e horizontalmente */
    height: auto; /* Ajusta a altura para adaptar ao conteúdo */
    padding: 20px; /* Adiciona padding para espaçamento nas laterais */
  }
}

.section14-content {
  width: 80%;
  max-width: 1200px;
  padding-block: 50px;
}

.section14-content {
  @media (max-width: 768px) {
    width: 100%; /* Expande para ocupar toda a largura */
    padding-block: 30px; /* Reduz o padding vertical */
  }
}
.section14-timeline-mobile {
  display: flex;
  height: 1100px;
  position: relative;
  @media (min-width: 768px) {
    display: none;
  }
}
.section-mobile-left svg {
  position: absolute;
  top: 60px;
}
.section-mobile-right {
  position: absolute;
  padding-left: 60px;
  gap: 20px;
}
.section14-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section14-top button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--BRANCO, #fff);
  background: transparent;
  color: var(--BRANCO, #fff);
  border-radius: 16px;
  font-family: "Clash Display";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}

.section14-top button {
  @media (max-width: 768px) {
    justify-content: center;
    align-items: center;
    width: 80%; /* Aumenta a largura do botão para ocupar mais espaço */
    font-size: 12px; /* Reduz o tamanho da fonte */
    padding: 10px 20px; /* Ajusta o padding do botão */
  }
}

.section14-top h3 {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Tusker Grotesk";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.section14-top h3 {
  @media (max-width: 768px) {
    text-align: center;
    font-size: 28px; /* Reduz o tamanho da fonte no mobile */
    padding: 0 10px; /* Adiciona padding lateral para espaçamento */
  }
}

/* Timeline estrutura */
.section14-timeline {
  display: flex;
  justify-content: center;
  padding-block: 50px;
  @media only screen and (max-width: 768px) {
    display: none;
  }
}

.section14-timeline {
  @media (max-width: 768px) {
    flex-direction: column; /* Alinha a timeline em coluna no mobile */
    padding-block: 30px; /* Ajusta o padding vertical */
  }
}

.timeline-image {
  position: relative;

  width: 42px;
  height: 1055px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.svgLine {
  z-index: 999;
}

.timeline-circle {
  opacity: 0.3; /* Começa invisível */
  transition: opacity 0.5s ease-in-out; /* Transição suave */
}

.timeline-circle.active {
  opacity: 1; /* Fica visível */
}

.timeline-card-mobile,
.timeline-card2-mobile,
.timeline-card3-mobile,
.timeline-card4-mobile,
.timeline-card5-mobile,
.timeline-card6-mobile,
.timeline-card7-mobile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 24px;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
  margin-top: 30px;
}
.timeline-card-mobile img,
.timeline-card2-mobile img,
.timeline-card3-mobile img,
.timeline-card4-mobile img,
.timeline-card5-mobile img,
.timeline-card6-mobile img,
.timeline-card7-mobile img {
  width: 24px; /* Tamanho do ícone check */
  height: 24px;
  flex-shrink: 0;

  z-index: 2;
}

.timeline-card,
.timeline-card2,
.timeline-card3,
.timeline-card4,
.timeline-card5,
.timeline-card6,
.timeline-card7 {
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 24px;
  padding: 20px;
  color: #fff;
  position: absolute;
  min-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.timeline-card.active,
.timeline-card2.active,
.timeline-card3.active,
.timeline-card4.active,
.timeline-card5.active,
.timeline-card6.active,
.timeline-card7.active {
  opacity: 1;
  transform: scale(1.05); /* Leve aumento para dar um efeito visual */
}

.timeline-card {
  right: 60px;
  top: -3%;
}

.timeline-card2 {
  left: 60px;
  top: 11.5%;
}

.timeline-card3 {
  right: 60px;
  top: 28%;
}

.timeline-card4 {
  left: 60px;
  top: 43%;
}

.timeline-card5 {
  right: 60px;
  top: 60%;
}

.timeline-card6 {
  left: 60px;
  top: 77.3%;
}

.timeline-card7 {
  right: 60px;
  top: 93%;
}

.timeline-card-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timeline-card-text h4 {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.timeline-card-text p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.section14-bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 100px;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding-top: 30vw;
    margin-top: 20px;
  }
}

.section14-bottom h3 {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Tusker Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 60%;
  @media (max-width: 768px) {
    font-size: 24px;
    width: 80%;
  }
}

.section14-bottom-cards {
  display: flex;
  gap: 30px;
  align-items: center;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 20px;
  }
}

.section14-bottom-left {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-inline: 80px;
  min-height: 320px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--Color, #131313);
  @media (max-width: 768px) {
    padding-inline: 20px;
    min-height: 200px;
    border-radius: 24px;
  }
}

.section14-bottom-left p {
  color: #fff;
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 20px;
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 18px;
  }
}

.section14-bottom-right {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-inline: 80px;
  min-height: 320px;
  border-radius: 48px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--VERDE, #00c847);
  box-shadow: 0px 0px 67.7px 0px rgba(0, 200, 71, 0.3);
  @media (max-width: 768px) {
    padding-inline: 20px;
    min-height: 200px;
    border-radius: 24px;
  }
}

.section14-bottom-right p {
  color: var(--Color, #131313);
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 18px;
  }
}

.section14-bottom-left:hover {
  background: #00c847;
  border: 1px solid rgba(0, 200, 71, 0.4);
  transition: background-color 0.3s ease, border 0.3s ease;
}

.section14-bottom-left:hover p {
  color: #ffffff;
  transition: color 0.3s ease;
}

.section15 {
  background-image: url("/Images/Parte-17.webp");
  background-size: 130% auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  @media (max-width: 768px) {
    background-image: url("/Images/PARTE-17-MOBILE.jpg");
  }
  @media only screen and (min-width: 1441px) {
    background-size: contain;
  }
}

.section15-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding-inline: 100px;
  padding-block: 50px;
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
  @media (max-width: 768px) {
    padding-inline: 20px;
    padding-block: 30px;
  }
}

.section15-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.section15-top h3 {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Tusker Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 150px;
  @media (max-width: 768px) {
    font-size: 28px;
    padding-inline: 10px;
    margin-top: 600px;
  }
}

.section15-top p {
  color: var(--BRANCO, #fff);
  text-align: center;
  font-family: "Clash Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  @media (max-width: 768px) {
    font-size: 14px;
    padding-inline: 10px;
  }
}

.section15-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  border: 1px solid var(--VERDE, #00c847);
  background: var(--Color, #131313);
  padding-inline: 40px;
  padding-block: 50px;
  @media (max-width: 768px) {
    padding-inline: 20px;
    padding-block: 30px;
    border-radius: 24px;
  }
}

.section15-box h5 {
  color: #fff;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.section15-box span {
  opacity: 0.5;
  color: #fff;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.section15-box-stripe {
  opacity: 0.5;
  color: #fff;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: strikethrough;

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.section15-box h3 {
  color: var(--VERDE, #00c847);
  font-family: "Clash Display";
  font-size: 132px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  @media (max-width: 768px) {
    font-size: 60px;
  }
}

.section15-box-avista {
  border-radius: 12px;
  background: #222;
  padding-inline: 30px;
  padding-block: 10px;
  @media (max-width: 768px) {
    padding-inline: 20px;
    padding-block: 10px;
  }
}

.section15-box-avista h4 {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.section15-box-avista span {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.section15-box-infos {
  display: flex;
  flex-direction: column;
  padding-block: 20px;
  gap: 20px;
  @media (max-width: 768px) {
    gap: 10px;
  }
}

.section15-box-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.section15-box-info h4 {
  color: #fff;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 200, 71, 0.5);
  }
  50% {
    transform: scale(1.05); /* Aumenta levemente o botão */
    box-shadow: 0 0 20px rgba(0, 200, 71, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 200, 71, 0.5);
  }
}

.section15-box-button {
  border-radius: 16px;
  background: var(--VERDE, #00c847);
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-transform: uppercase;
  padding-block: 20px;
  border: none;
  animation: pulse 1.5s infinite; /* Aplica a animação */
  transition: transform 0.2s ease;
  @media (max-width: 768px) {
    font-size: 16px;
    padding-block: 15px;
  }
}

.section15-box-button:hover {
  transform: scale(1.1); /* Efeito adicional no hover */
}

.section15-box-whats {
  border-radius: 16px;
  background: #222;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding-block: 20px;
  border: none;
  color: #fff;
  text-align: center;
  font-family: "Clash Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-block: 20px;
  @media (max-width: 768px) {
    gap: 8px;
    margin-block: 15px;
  }
}
.section16 {
  background-image: url("/Images/Parte-18.webp");
  background-size: 160% auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;

  @media only screen and (min-width: 1441px) {
    background-size: contain;
    height: 50vh;
  }
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section16 {
    background-image: url("Images/PARTE-18-MOBILE.jpg");
    background-size: cover; /* Garante que a imagem ocupe todo o fundo */
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    margin-bottom: 30px;
  }
}

.section16-content {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduz o espaço entre os elementos */
  justify-content: center; /* Posiciona o texto na parte inferior */
  align-items: flex-start;
  padding: 0 20px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;

  @media only screen and (min-width: 1441px) {
  }
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section16-content {
    padding: 10px 35px; /* Reduz o padding para aproximar o texto */
    justify-content: flex-end;
    align-items: center;
    gap: 5px; /* Reduz o espaço entre o título e o parágrafo */
    max-width: 100%;
  }
}

.section16-content h3 {
  color: var(--BRANCO, #fff);
  font-family: "Tusker Grotesk";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0; /* Remove margens para reduzir espaçamento extra */
  text-align: center;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section16-content h3 {
    font-size: 24px; /* Ajuste para melhor legibilidade */
    text-align: center;
  }
}

.section16-content p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  width: 40%;
  margin: 0;
  text-align: left;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .section16-content p {
    font-size: 12px;
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
}

.faq-container {
  width: 60%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .faq-container {
    width: 90%; /* Ajusta a largura para dispositivos móveis */
    margin-bottom: 40px; /* Reduz o espaço inferior */
  }
}
.faq-item {
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  color: #fff;
}
@media (max-width: 768px) {
  .faq-item {
    padding: 15px 0; /* Reduz o padding para melhor visualização em telas menores */
  }
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq-question {
    font-size: 18px; /* Reduz o tamanho da fonte para dispositivos móveis */
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 16px;
  margin-top: 10px;
  color: #bbb;
}
@media (max-width: 768px) {
  .faq-answer p {
    font-size: 13px; /* Reduz o tamanho da fonte para dispositivos móveis */
  }
}

.faq-answer p {
  color: var(--BRANCO, #fff);
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.faq-toggle {
  position: relative;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .faq-toggle {
    width: 12px; /* Ajusta o tamanho do ícone para telas menores */
    height: 12px;
  }
}
.bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.horizontal {
  transform: rotate(90deg);
}

.vertical {
  transform: rotate(0deg);
}

.faq-item.active .horizontal {
  transform: rotate(0deg);
}

.footer {
  background: var(--Color, #131313);
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 49px;
}
@media (max-width: 768px) {
  .footer-content {
    padding-block: 30px; /* Reduz o padding para dispositivos móveis */
  }
}

.footer-content h5 {
  color: #fff;
  font-family: "Clash Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .footer-content h5 {
    font-size: 12px; /* Ajusta o tamanho da fonte para telas menores */
    text-align: center;
  }
}
.section7-swiper-wrapper-mobile {
  /* display: flex;
    flex-direction: column; */
}
.section7-swiper-mobile {
  display: none;
  @media only screen and (max-width: 768px) {
    display: block;
  }
}
.section7-swiper-slide-mobile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
}
.section7-swiper-slide-mobile {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.section7-swiper-mobile {
  max-width: 300px;
}
.section7-swiper-wrapper-mobile {
  width: 300px;
}
