:root {
  --bg-dark: #000000;
  --bg-card: #263c2c; /* Fundo de elementos sobrepostos */
  --text-light: #ffffff; /* Branco para títulos */
  --text-muted: #c2c2c2; /* Cinza azulado para parágrafos */
  --new-text: #70d489;
  --font-main: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- ESTILOS DA SEÇÃO HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--blue-tech);
  background-image:
    radial-gradient(circle, #ffffff 1px, transparent 1px),
    radial-gradient(circle, #ffffff 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size:
    200px 200px,
    300px 300px,
    400px 400px;
  background-position:
    0 0,
    0 0,
    0 0;
  animation: snow-fall 12s linear infinite;
}

/* Adicione a animação no final do seu style.css */
@keyframes snow-fall {
  0% {
    background-position:
      0px 0px,
      0px 0px,
      0px 0px;
  }
  100% {
    /* Os valores aqui devem casar com o background-size para o loop ficar contínuo */
    background-position:
      200px 200px,
      300px 300px,
      400px 400px;
  }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

/* Tipografia e Textos */
.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-blue {
  color: var(--new-text);
  text-shadow: 0 0 10px var(--blue-glow); /* Efeito neon sutil */
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Botões */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--new-text);
  box-shadow: 0 6px 25px var(--blue-glow);
  color: #000000;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background-color: var(--bg-card);
  color: #fff;
}

.btn-outline {
  background-color: var(--bg-card);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background-color: var(--new-text);
  box-shadow: 0 6px 25px var(--blue-glow);
  color: #000000;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 25px var(--blue-glow);
}

/* Imagem/Logo Hero */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.logo-hero {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 767px) {
    .logo-hero {
        max-width: 90%;
    }
}
@media (max-width: 992px) {
  .hero {
    padding: 6rem 0; /* Espaço caso adicione header fixo depois */
  }

  .hero-container {
    /* Inverte a ordem: Imagem (Logo) vai para o topo */
    flex-direction: column-reverse;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
    .logo-hero {
        max-width: 60%;
    }
}





















/* ANTES E DEPOIS */
.prova-social {
  background-color: var(--new-text);
  padding: 8rem 0;
  width: 100vw;
  overflow: hidden;
}
.social-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 10%;
}
.social-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--bg-dark);
}
.social-header h2 span {
  color: var(--bg-card);
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}
.carousel-track {
  display: flex;
  padding: 2rem 0;
  animation: scroll 50s linear infinite;
  width: max-content;
  will-change: transform;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.depoimento-img-card {
  width: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  margin-right: 2.5rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.depoimento-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .social-header h2 {
    font-size: 2.8rem;
  }
  .depoimento-img-card {
    width: 320px;
  }
}
@media (max-width: 480px) {
  .social-header h2 {
    font-size: 2.2rem;
  }
  .depoimento-img-card {
    width: 280px;
  }
}









/* --- ESTILOS DA SEÇÃO PROFISSIONAIS (SEÇÃO 3) --- */
.professionals {
  padding: 10rem 0; /* Espaçamento generoso */
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden; /* Necessário para os slide-ins */
}

.professionals-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Reutilizando estrutura de títulos e texto-blue da hero */
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid de Cards */
.professionals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: 100%;
}

/* Estrutura do Card Premium */
.pro-card {
  background-color: var(--bg-card); /* Fundo de elementos sobrepostos */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05); /* Borda sutil */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.pro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(112, 212, 137, 0.15); /* Glow sutil do verde no hover */
}

/* Contêiner da Foto (força proporção 16:9) */
.pro-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.pro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.6s ease;
}

.pro-card:hover .pro-card-image img {
  scale: 1.05; /* Zoom sutil na imagem no hover */
}

/* Conteúdo do Card */
.pro-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Badges de Destaque */
.pro-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000000;
  background-color: var(--new-text); /* Verde neon */
  padding: 0.5rem 1rem;
  border-radius: 20px;
  width: fit-content;
}

.pro-badge-seguranca {
  background-color: transparent;
  color: var(--new-text);
  border: 1px solid var(--new-text);
}

.pro-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.pro-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 992px) {
  .professionals {
    padding: 6rem 0;
  }

  .professionals-header {
    margin-bottom: 4rem;
    padding: 0 1rem;
  }

  .professionals-grid {
    grid-template-columns: 1fr; /* Uma coluna no mobile */
    gap: 3rem;
  }

  .pro-card-content {
    padding: 2rem;
  }

  .pro-card h3 {
    font-size: 1.75rem;
  }
}




















/* --- ESTILOS DA SEÇÃO PLANOS (SEÇÃO 4) --- */
.pricing {
  background-color: var(--new-text); /* Fundo verde vibrante */
  padding: 8rem 0;
  color: var(--bg-dark);
}

.pricing-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pricing-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bg-dark);
}

.text-dark {
  color: var(--bg-card); /* Tom escuro para contraste no título */
}

/* Grid de 4 colunas */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center; /* Centraliza verticalmente para o card popular se destacar */
}

/* Card Padrão (Branco) */
.price-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 3rem 2rem;
  border: 4px solid #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  color: white;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Card Destaque (Trimestral) */
.popular-card {
  background-color: var(--bg-card);
  color: var(--text-light);
  transform: scale(1.08); /* Fica levemente maior que os outros */
  border: 4px solid #ffffff;
  z-index: 2;
}

.popular-card:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-dark);
  color: var(--new-text);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Tipografia dos Cards */
.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: inherit;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.plan-discount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--new-text); /* Cor do desconto nos cards brancos */
}

.popular-card .plan-discount {
  color: var(--new-text); /* Cor do desconto no card escuro */
}

.invisible-spacer {
  opacity: 0;
  pointer-events: none;
}

/* Botões específicos da seção de planos */
.btn-dark {
  background-color: var(--new-text);
  color: black;
  border: 2px solid transparent;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.btn-dark:hover {
  background-color: white;
  color: black;
}

.popular-card .btn-primary {
  background-color: var(--new-text);
  color: black;
}

.popular-card .btn-primary:hover {
  background-color: white;
  color: black;
}

.btn-full {
  width: 100%;
  display: block;
}

/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    gap: 3rem 2rem;
  }
  
  .popular-card {
    transform: scale(1); /* Remove o tamanho extra para não quebrar o layout */
  }
  
  .popular-card:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr; /* 1 coluna no celular */
  }
}
























/* --- ESTILOS DA SEÇÃO LOCALIZAÇÃO (SEÇÃO 5) --- */
.location {
  background-color: var(--bg-dark); /* Voltamos pro fundo escuro */
  padding: 8rem 0;
  color: var(--text-light);
  overflow: hidden;
}

.location-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.location-content {
  flex: 1;
  max-width: 500px;
}

.location-content .section-title {
  margin-bottom: 1rem;
}

.location-content .section-subtitle {
  margin-bottom: 3rem;
}

/* Caixa de Endereço */
.address-box {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.address-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--new-text);
  margin-bottom: 1rem;
}

.address-item p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Estilização do contêiner do Mapa */
.location-map {
  flex: 1;
  width: 100%;
  height: 500px; /* Altura do mapa */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--bg-card);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  /* Um truque visual: usar grayscale para o mapa combinar melhor com o tema dark */
  filter: grayscale(80%) contrast(1.2) opacity(0.9);
  transition: filter 0.3s ease;
}

.location-map iframe:hover {
  filter: grayscale(0%) contrast(1) opacity(1); /* Fica colorido ao passar o mouse */
}

/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 992px) {
  .location-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .location-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .address-box {
    align-items: center;
    width: 100%;
    max-width: 500px;
  }

  .location-map {
    height: 400px;
    width: 100%;
  }
}


















/* --- ESTILOS DA SEÇÃO MODALIDADES (SEÇÃO 6) --- */
.modalities {
  background-color: var(--new-text); /* Fundo verde vibrante */
  padding: 8rem 0;
  color: var(--bg-dark); /* Texto escuro padrão */
}

.modalities-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.modalities-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--bg-dark); /* Título escuro */
}

.modalities-header .text-dark {
  color: var(--bg-card); /* Tom de verde-escuro para contraste no título */
}

.modalities-subtitle {
  font-size: 1.125rem;
  color: var(--bg-dark);
  line-height: 1.6;
  opacity: 0.8;
}

/* Grid de Modalidades */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}

/* Card das Modalidades */
.modality-card {
  background-color: #ffffff; /* Fundo branco limpo */
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* ponto inicial do hover */
  transform: translateY(0) scale(1);
  
  /* transição suave */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);

  will-change: transform, box-shadow;
}

.modality-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modality-icon {
  color: var(--new-text); /* Ícone no verde da marca */
  background-color: var(--bg-card); /* Fundo escuro pro ícone */
  padding: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modality-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.2;
}

.modality-time {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  background-color: var(--new-text); /* Badge verde neon */
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  width: fit-content;
}

.modality-description {
  font-size: 1rem;
  color: var(--bg-dark);
  line-height: 1.6;
  opacity: 0.9;
}

/* Galeria de Fotos */
.modalities-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.gallery-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  aspect-ratio: 16 / 9; /* Força proporção landscape */
}

.gallery-image:hover {
  transform: scale(1.03);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 992px) {
  .modalities {
    padding: 6rem 0;
  }

  .modalities-header {
    margin-bottom: 4rem;
  }

  /* Trocamos de Grid para Flexbox no tablet para centralizar a "sobra" */
  .modalities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza o card que sobrar na linha de baixo */
    gap: 2rem;
  }

  /* Fazemos os cards terem a mesma largura de antes (metade do espaço menos o gap) */
  .modality-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  /* No celular, forçamos os cards a ficarem em uma coluna única ocupando tudo */
  .modalities-grid {
    flex-direction: column;
    align-items: center;
  }

  .modality-card {
    width: 100%;
    padding: 2.5rem 2rem;
  }

  .modalities-gallery {
    grid-template-columns: 1fr; /* 1 coluna nas fotos */
    gap: 1.5rem;
  }
}






















/* --- ESTILOS DA SEÇÃO DE VÍDEO (SEÇÃO 7) --- */
.video-tour {
  background-color: var(--bg-dark); /* Fundo escuro */
  padding: 8rem 0;
  color: var(--text-light);
}

.video-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* O Contêiner do Vídeo */
.video-wrapper {
  position: relative; /* Referencial para as camadas absolutas */
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000; /* Fundo enquanto nada carrega */
}

/* A Fachada (Imagem + Botão) */
.video-facade {
  position: absolute; /* Sobrepõe absolutamente */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10; /* Garante que fique na frente do vídeo */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
  background-color: rgba(0, 0, 0, 0.3); /* Escurecimento leve via CSS para dar contraste ao botão */
}

.video-facade img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Removi a opacidade daqui para testar a visibilidade total */
  transition: transform 0.5s ease;
  z-index: 11; /* Atrás do botão, mas na frente do fundo da fachada */
}

.video-facade:hover img {
  transform: scale(1.03);
}

/* O Botão de Play */
.play-button {
  position: relative;
  z-index: 20; /* A peça mais à frente de todas */
  width: 80px;
  height: 80px;
  background-color: black;
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(112, 212, 137, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button svg {
  width: 35px;
  height: 35px;
  margin-left: 0px; /* Ajuste visual para o triângulo parecer centralizado */
}

.video-facade:hover .play-button {
  box-shadow: 0 0 40px rgba(112, 212, 137, 0.8);
}

/* O Vídeo Real */
.gym-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; /* Ocupa o fundo absolutamente */
  top: 0;
  left: 0;
  z-index: 1; /* Camada base */
}

/* Classe auxiliar que anima o vídeo subindo (adicione junto com as outras de animação) */
.slide-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}












/* --- ESTILOS DA SEÇÃO FAQ PREMIUM (SEÇÃO 8) --- */
.faq-premium {
  background-color: var(--new-text); /* Fundo verde vibrante */
  padding: 8rem 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-badge {
  display: inline-block;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  background-color: var(--bg-dark);
  color: var(--new-text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.faq-header h2 {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  color: var(--bg-dark); /* Texto preto */
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
}

.faq-header h2 span {
  color: var(--bg-card); /* Destaque verde escuro */
}

.faq-header p {
  font-size: 1.15rem;
  color: var(--bg-dark);
  opacity: 0.85;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15); /* Linha divisória escura sutil */
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.question-text {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-dark);
  padding-right: 2rem;
  transition: color 0.3s ease;
}

.icon-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--bg-card);
  transition: transform 0.4s ease, color 0.3s ease;
  line-height: 1;
}

/* Hover States */
.faq-item summary:hover .question-text,
.faq-item summary:focus .question-text,
.faq-item summary:active .question-text {
  color: var(--bg-card);
}

.answer-text {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  animation: fadeInDown 0.4s ease-in-out;
}

.answer-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bg-dark);
  opacity: 0.85;
}

/* Animação do Ícone quando aberto */
details[open] .icon-toggle {
  transform: rotate(45deg);
  color: var(--bg-dark);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-cta-container {
  text-align: center;
}

/* Botão Adaptado */
.faq-btn {
  display: inline-block;
  background-color: var(--bg-dark); /* Fundo preto */
  color: var(--new-text); /* Texto verde */
  text-decoration: none;
  padding: 1.2rem 3rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid transparent;
}

.faq-btn:hover,
.faq-btn:focus,
.faq-btn:active {
  background-color: transparent;
  color: var(--bg-dark);
  border-color: var(--bg-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
  .faq-premium {
    padding: 6rem 1.5rem; /* Ajuste de espaçamento lateral no mobile */
  }
  .faq-header h2 {
    font-size: 2.2rem;
  }
  .question-text {
    font-size: 1.1rem;
  }
  .faq-btn {
    width: 100%;
    padding: 1.2rem 1rem;
  }
}









/* --- ESTILOS DO RODAPÉ (FOOTER) --- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Linha sutil para separar do verde acima */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Marca */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.footer-logo .text-blue {
  color: var(--new-text); /* Verde neon */
}

.footer-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* Links Centrais */
.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--new-text); /* Fica verde ao passar o mouse */
  transform: translateY(-2px);
}

/* Botão de Voltar ao Topo */
.btn-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-top:hover {
  background-color: var(--bg-card);
  color: var(--new-text);
  border-color: var(--new-text);
}

/* Base do Rodapé (Copyright e Créditos) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.developer-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: var(--new-text);
}

/* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  
  .footer-brand {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}