:root {
  --bg-dark: #0a192f;
  --bg-light: #102542;
  --text: #dce3f3;
  --highlight: #00ddb3; /* 🔹 novo tom do destaque */
  --card-bg: #162b45;
  --button: #00ddb3;
  --button-text: #0a192f;
}

/* ===============================
   BASE
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
}

/* ============================= */
/* PADRONIZAÇÃO DE TITULOS H2 */
/* ============================= */

.section h2,
.section-terciaria h2,
.section-beneficios h2,
.section-desempenho h2 {
  font-size: 2rem; /* tamanho equilibrado para desktop */
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section h2,
  .section-terciaria h2,
  .section-beneficios h2,
  .section-desempenho h2 {
    font-size: 1.5rem; /* reduzido no mobile para uniformizar */
    line-height: 1.4;
  }
}

/* ============================= */
/* EFEITO DE ROLAGEM SUAVE */
/* ============================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   HERO (1ª Dobra - Legibilidade e Contraste)
=============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #0d1b2f 0%, #08131f 100%);
  text-align: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

/* 🔹 Faixa de dor no topo */
.faixa-dor-topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #e53935, #ff5252);
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.2rem; /* 🔸 aumentada */
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
  z-index: 10;
}

.faixa-dor-topo strong {
  text-decoration: underline;
  color: #fff;
}

/* 🔹 Headline principal */
.conteudo-hero {
  max-width: 900px;
  margin-top: 100px; /* espaço abaixo da faixa */
  line-height: 1.4;
}

.headline-principal {
  font-weight: 800;
  font-size: 2rem;
  color: #f1f5f9; /* branco neutro */
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-align: center;
}

.headline-principal .highlight {
  color: #00ddb3; /* 🔸 cor original restaurada */
  font-weight: 800;
  text-shadow: none; /* remove brilho */
}

/* 🔹 Tamanhos responsivos */
@media (min-width: 768px) {
  .headline-principal {
    font-size: 2.5rem;
    line-height: 1.35;
  }
}

@media (min-width: 1024px) {
  .headline-principal {
    font-size: 3.2rem;
    line-height: 1.25;
  }
}

/* 🔹 Seta indicadora */
.arrow {
  position: absolute;
  bottom: 40px;
  font-size: 28px;
  color: #00ddb3;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}


/* ===============================
   SUBHEADLINE (abaixo do título principal)
=============================== */
.subheadline {
  max-width: 48rem;
  margin: 0 auto 2.5rem auto;
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .subheadline {
    font-size: 1.25rem;
  }
}

/* ============================= */
/* SEGUNDA DOBRA — DOR REALISTA */
/* ============================= */
.section-dor {
  background: #0e1a2b; /* tom mais escuro para contraste com a hero */
  color: #e5e7eb; /* texto claro, mas não branco puro */
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-dor h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.4;
}

.section-dor p {
  max-width: 800px;
  margin: 15px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0b8c5;
}

.section-dor p:last-child {
  color: #00ddb3; /* destaque final com o tom de assinatura do Clube Quant */
  font-weight: 600;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .section-dor {
    padding: 80px 15px;
  }
  .section-dor h2 {
    font-size: 1.5rem;
  }
  .section-dor p {
    font-size: 1rem;
  }
}


/* ===============================
   TERCEIRA DOBRA (O trader profissional...)
=============================== */
.section-terciaria {
  background: var(--bg-light);
  text-align: center;
  padding: 100px 20px;
}
.section-terciaria h2 {
  font-family: 'Inter', 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.section-terciaria h2 .highlight { color: var(--highlight); }
@media (min-width: 768px) {
  .section-terciaria h2 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .section-terciaria h2 { font-size: 3.5rem; }
}
.section-terciaria p {
  max-width: 46rem;
  margin: 0 auto 2rem auto;
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section-terciaria p { font-size: 1.25rem; }
}
/* Bloco inferior destacado */
.section-terciaria .bloco-destaque {
  display: inline-block;
  background: #0f2742;
  border: 1px solid #183a5e;
  border-radius: 10px;
  color: #ffffff;
  padding: 16px 28px;
  font-weight: 600;
  margin-top: 20px;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.section-terciaria .bloco-destaque:hover { background: #132f52; }

/* ============================= */
/* QUARTA DOBRA — BENEFÍCIOS */
/* ============================= */
.section-beneficios {
  background: #0a1628;
  color: #e5e7eb;
  text-align: center;
  padding: 100px 20px;
}

.section-beneficios h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.section-beneficios .intro {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #b0b8c5;
  line-height: 1.8;
}

/* GRID DE BENEFÍCIOS */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio {
  background: #111f38;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.beneficio:hover {
  background: #15294a;
  transform: translateY(-4px);
}

.beneficio .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #00ddb3;
}

.beneficio h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.beneficio p {
  color: #b0b8c5;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-beneficios {
    padding: 70px 15px;
  }
  .section-beneficios h2 {
    font-size: 1.6rem;
  }
  .beneficio {
    text-align: center;
  }
}


/* ============================= */
/* QUINTA DOBRA — CAMINHO */
/* ============================= */
.section-caminho {
  background: #0a1628;
  padding: 100px 20px;
  text-align: center;
  color: #e5e7eb;
}

.section-caminho h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-caminho .sub {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 60px;
}

.caminhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARTÕES */
.caminho-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.caminho-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.caminho-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.caminho-card li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  line-height: 1.6;
}

.caminho-card .icon {
  font-size: 1.1rem;
}

/* VARIAÇÕES DE ESTILO */
.caminho-card.comum {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
}

.caminho-card.comum h3 {
  color: #ef4444;
}

.caminho-card.comum .icon {
  color: #ef4444;
}

.caminho-card.quant {
  border-color: rgba(0, 221, 179, 0.4);
  background: rgba(0, 221, 179, 0.05);
}

.caminho-card.quant h3 {
  color: #00ddb3;
}

.caminho-card.quant .icon {
  color: #00ddb3;
}

.caminho-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .section-caminho {
    padding: 70px 15px;
  }
  .section-caminho h2 {
    font-size: 1.6rem;
  }
}

/* ============================= */
/* DOBRA DE PREÇO — VERSÃO FINAL */
/* ============================= */
.section-preco {
  background: #081522;
  color: #e5e7eb;
  text-align: center;
  padding: 100px 20px;
}

.section-preco h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-preco .sub {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 60px;
}

.preco-card.clean {
  background: linear-gradient(145deg, #0d1e32, #102a46);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  max-width: 650px;
  margin: 0 auto;
  padding: 50px 40px;
  box-shadow: 0 0 40px rgba(0, 221, 179, 0.08);
}

/* Header e preço */
.preco-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.valor-destaque {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin: 20px 0;
}

.valor-destaque .moeda {
  font-size: 1rem;
  color: #9ca3af;
  margin-right: -8px;
}

.valor-destaque .preco {
  font-size: 4rem;
  font-weight: 800;
  color: #00ddb3;
}

.valor-destaque .periodo {
  font-size: 1rem;
  color: #9ca3af;
}

.preco-header .descricao {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.btn-grande {
  background: #00ddb3;
  color: #0a1628;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-grande:hover {
  background: #00c0a0;
}

.cancelar {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Lista de benefícios */
.beneficios-inclusos {
  list-style: none;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: left;
  padding: 0;
}

.beneficios-inclusos li {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 10px;
}

.beneficios-inclusos svg {
  flex-shrink: 0;
  stroke: #00ddb3;
}

/* Garantia */
.garantia.destaque {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 221, 179, 0.08);
  border: 1px solid rgba(0, 221, 179, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  color: #b5ffec;
  font-size: 0.95rem;
  line-height: 1.5;
}

.garantia.destaque svg {
  flex-shrink: 0;
  stroke: #00ddb3;
}

@media (max-width: 768px) {
  .preco-card.clean {
    padding: 40px 25px;
  }

  .valor-destaque .preco {
    font-size: 3rem;
  }

  .btn-grande {
    width: 100%;
  }
}

/* ============================= */
/* DOBRA DE FAQ - MODERNA */
/* ============================= */
.section-faq {
  background: #081522;
  color: #e5e7eb;
  padding: 100px 20px;
  text-align: center;
}

.section-faq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-faq .sub {
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #0d1e32;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(0, 221, 179, 0.3);
  background: #102a46;
}

.faq-pergunta {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-resposta {
  font-size: 1rem;
  color: #cbd5e1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 0;
}

.faq-item.active .faq-resposta {
  max-height: 400px;
  opacity: 1;
  margin-top: 12px;
}

.faq-icone {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icone {
  transform: rotate(180deg);
}

/* ============================= */
/* DOBRA CTA FINAL */
/* ============================= */
.section-cta-final {
  background: linear-gradient(180deg, #071523 0%, #0a1d33 100%);
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section-cta-final h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-cta-final .highlight {
  color: #00ddb3;
}

.section-cta-final .sub {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta-final .btn-grande {
  background: #00ddb3;
  color: #0a1628;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 50px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-cta-final .btn-grande:hover {
  background: #00c7a1;
  transform: translateY(-2px);
}

.section-cta-final .nota {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Mobile */
@media (max-width: 768px) {
  .section-cta-final h2 {
    font-size: 1.7rem;
  }

  .section-cta-final .sub {
    font-size: 1rem;
  }

  .section-cta-final .btn-grande {
    width: 100%;
  }
}

/* ===============================
   BOTÕES
=============================== */
.btn {
  background: var(--button);
  color: var(--button-text);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}
.btn:hover { opacity: 0.8; }

/* ===============================
   FOOTER
=============================== */
footer {
  padding: 40px;
  font-size: 14px;
  opacity: 0.6;
  text-align: center;
}

/* ===============================
   RESPONSIVIDADE
=============================== */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.4rem; }
  .btn { width: 100%; }
  .hero { padding: 3rem 1rem; }
  section { padding: 60px 20px; }
}
