/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --hero-bg:        #1a1100;
  --hero-bg-alt:    #2a1d00;
  --cream:          #ede8d5;
  --cream-light:    #f5f0e8;
  --white:          #ffffff;
  --gold:           #c9a84c;
  --gold-light:     #e0ba6a;
  --cta-green:      #16a34a;
  --cta-green-h:    #15803d;
  --text-dark:      #1a1a1a;
  --text-body:      #3a3028;
  --text-muted:     #7a6e58;
  --text-light:     #d4c89a;
  --text-dim:       #a89a78;
  --border-light:   #e0d5bc;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --max-w:    1200px;
  --section-py: 80px;
  --radius:   12px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; font-family: inherit; cursor: pointer; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-py {
  padding: var(--section-py) 0;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 17px;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.text-center { text-align: center; }

/* ============================================================
   BOTÃO CTA
   ============================================================ */
.btn-cta {
  display: inline-block;
  background: var(--cta-green);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(22,163,74,0.35);
}

.btn-cta:hover {
  background: var(--cta-green-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,0.45);
}

.btn-cta:active { transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #1a1100;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,17,0,0.82) 0%, rgba(26,17,0,0.70) 60%, rgba(26,17,0,0.88) 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: #f5f0e8;
  letter-spacing: 2px;
  line-height: 1.05;
  margin: 0;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
  max-width: 600px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0;
  line-height: 1.85;
}

.hero-mockup {
  margin: 0;
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 24px rgba(201,168,76,0.2));
}

.hero-trust {
  display: block;
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* ============================================================
   BACKGROUNDS ALTERNADOS
   ============================================================ */
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--hero-bg); }

/* ============================================================
   QUÉ ES
   ============================================================ */
.que-es-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.checklist-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}

.checklist li::before {
  content: '✔';
  color: var(--cta-green);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.5;
}

.que-es-img img {
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   QUÉ INCLUYE — CARDS GRID
   ============================================================ */
.cards-grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

.cards-grid-3 .content-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 240px;
}

.content-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.content-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}

.content-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content-card-body {
  padding: 20px;
}

.content-card-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.content-card-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   BENEFÍCIOS (ÍCONE VISTO)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 32px;
  background: var(--cream-light);
  border-radius: var(--radius);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   PERSONAS GRID (2x2)
   ============================================================ */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.persona-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.persona-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.persona-card-body {
  padding: 20px 24px;
}

.persona-card-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.persona-card-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   BONOS
   ============================================================ */
.bonos-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
}

.bono-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.bono-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}

.bono-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bono-card-body {
  padding: 20px;
}

.bono-card-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.bono-card-body p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.bono-price {
  font-size: 13px;
  color: var(--text-muted);
}

.bono-price s { opacity: 0.6; }

.bono-price .free {
  color: var(--cta-green);
  font-weight: 700;
  margin-left: 6px;
}

.bonos-urgencia {
  text-align: center;
  font-size: 16px;
  color: var(--text-body);
  margin-top: 40px;
  padding: 20px;
  background: var(--cream-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

/* ============================================================
   PROBLEMA / SOLUCIÓN
   ============================================================ */
.problema-section {
  position: relative;
}

.problema-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/WTkmHao1z4z6y56e/pergament-papier-hintergrund-textur-16442127221im-YZ9jqabgOjt55JG5.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.problema-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 14px 28px;
  margin-top: 8px;
}

.social-proof-badge span { font-size: 24px; }

.social-proof-badge p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.social-proof-badge strong { color: var(--gold); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}

.testimonio-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonio-text::before { content: '"'; font-size: 20px; color: var(--gold); }
.testimonio-text::after  { content: '"'; font-size: 20px; color: var(--gold); }

.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonio-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonio-autor strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.testimonio-autor span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   PRECIO
   ============================================================ */
.bg-cream-light { background: var(--cream-light); }

.pricing-card {
  max-width: 580px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1100;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 900;
  color: #f5f0e8;
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-price span {
  font-size: 22px;
  color: var(--text-light);
}

.pricing-list {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-badges-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--text-dim);
}

.pricing-scarcity {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gold);
  font-family: var(--font-sans);
  letter-spacing: 1px;
}

/* ============================================================
   GARANTÍA
   ============================================================ */
.garantia-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.garantia-img img {
  width: 240px;
  height: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.3s;
}

.faq-item.open .faq-question { color: var(--cta-green); }

.faq-icon {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.35s;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  height: 0;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-cta {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-bottom {
  text-align: center;
}

/* ============================================================
   RESPONSIVO — MOBILE FIRST
   ============================================================ */
@media (max-width: 768px) {

  :root {
    --section-py: 56px;
  }

  /* Hero */
  .hero-content { gap: 16px; }
  .hero-mockup { max-width: 300px; }

  /* Que es */
  .que-es-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .que-es-img { order: -1; }

  /* Cards 3 colunas → 1 coluna */
  .cards-grid-3 .content-card {
    flex: 1 1 100%;
  }

  /* Benefícios */
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* Personas 2x2 → 1 coluna */
  .personas-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonios */
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-price { font-size: 38px; }

  .pricing-badges-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Garantia */
  .garantia-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .garantia-img img {
    width: 180px;
    margin: 0 auto;
  }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer p { padding: 0 18px 16px; }

  /* Footer CTA */
  .btn-cta { padding: 14px 24px; font-size: 12px; }
}

/* ============================================================
   POLISH FINAL
   ============================================================ */

/* Scrollbar customizada (Webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Seleção de texto */
::selection { background: rgba(201,168,76,0.3); color: var(--text-dark); }

/* Focus visible acessível */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hero layout containment */
#hero { contain: layout; }
