/* ─────────────────────────────────────────────────────────
   X8 Educação — Landing Page Styles
   Autor: X8 Educação
   Organização: tokens → base → layout → componentes → seções → responsivo
───────────────────────────────────────────────────────── */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:      #050505;
  --black2:     #0d0d0d;
  --black3:     #141414;
  --gold:       #C9A84C;
  --gold-light: #E8C86D;
  --gold-dark:  #8B6914;
  --white:      #F5F0E8;
  --gray:       #888880;
  --gray2:      #3a3a38;
  --danger:     #e53e3e;

  /* layout */
  --max:        1440px;
  --pad:        clamp(24px, 5vw, 80px);

  /* espaçamentos de seção */
  --section-y:    100px;
  --section-y-lg: 120px;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:   var(--black);
  color:        var(--white);
  font-family:  'Syne', sans-serif;
  overflow-x:   hidden;
  line-height:  1.5;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── TIPOGRAFIA ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

.label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
section, footer { width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-left:  auto;
  margin-right: auto;
  padding-left:  var(--pad);
  padding-right: var(--pad);
}

.section-pad    { padding: var(--section-y) 0; }
.section-pad-lg { padding: var(--section-y-lg) 0; }
.bg2            { background: var(--black2); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 52px); margin-bottom: 16px; }
.section-header p  { font-size: 15px; color: rgba(245,240,232,0.55); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: opacity 0.3s, transform 0.3s;
}
.btn-gold:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── FORMULÁRIO (compartilhado) ──────────────────────────── */
.form-card {
  background: rgba(13,13,13,0.85);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 36px;
  backdrop-filter: blur(20px);
  max-width: 420px;
}
.form-card h3  { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 8px; }
.form-card > p { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.12);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus         { border-color: var(--gold); }
.form-field input::placeholder  { color: rgba(245,240,232,0.25); }

.form-card .btn-gold {
  width: 100%;
  text-align: center;
  clip-path: none;
  display: block;
}

/* feedback de envio */
.form-feedback {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
  padding: 10px;
}
.form-feedback.success { color: #68d391; border: 1px solid rgba(104,211,145,0.3); }
.form-feedback.error   { color: var(--danger); border: 1px solid rgba(229,62,62,0.3); }

.field-hint {
  display: none;
  font-size: 11px;
  color: var(--danger);
  margin-top: 6px;
  padding-left: 2px;
  animation: hint-in 0.2s ease;
}
@keyframes hint-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.field-invalid {
  border-color: rgba(229,62,62,0.6) !important;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.15;
  pointer-events: none;
}

.hero-nav {
  width: 100%;
  max-width: var(--max);
  padding: 40px var(--pad) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero-nav img { height: 115px; }

.hero-body {
  width: 100%;
  max-width: var(--max);
  padding: 48px var(--pad) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-event-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 20px;
  margin-bottom: 32px;
}
.hero-event-tag .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

.hero-content h1      { font-size: clamp(38px, 4.5vw, 68px); margin-bottom: 24px; }
.hero-content .subtitle {
  font-size: 16px;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-date-block { display: flex; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.date-item { border-left: 2px solid var(--gold); padding-left: 16px; }
.date-item .di-label { font-size: 10px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; }
.date-item .di-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 75vh;
}
.hero-image-wrap::before {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%; height: 60%;
  background: radial-gradient(ellipse at bottom, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.hero-image-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.5;
}
.hero-img {
  height: 90%;
  max-height: 640px;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(to top, transparent 0%, black 20%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
}
.authority-badge {
  position: absolute; bottom: 40px; right: 0;
  background: rgba(13,13,13,0.9);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
  z-index: 3;
}
.authority-badge .ab-num   { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; line-height: 1; }
.authority-badge .ab-label { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; margin-top: 4px; }

/* ── DOR ─────────────────────────────────────────────────── */
#dor { position: relative; }
#dor::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.dor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.1);
}
.dor-item { background: var(--black2); padding: 44px 36px; transition: background 0.3s; }
.dor-item:hover { background: var(--black3); }
.dor-icon  { font-size: 30px; margin-bottom: 18px; }
.dor-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 21px; margin-bottom: 10px; }
.dor-item p  { font-size: 14px; color: rgba(245,240,232,0.5); line-height: 1.7; }

/* ── OPORTUNIDADE ────────────────────────────────────────── */
#oportunidade { position: relative; overflow: hidden; }
#oportunidade::before {
  content: '';
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.opo-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.opo-content h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 20px; }
.opo-content p  { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.8; margin-bottom: 14px; }
.opo-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box   { border: 1px solid rgba(201,168,76,0.2); padding: 28px 24px; position: relative; }
.stat-box::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.stat-box .stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-box .stat-desc { font-size: 12px; color: var(--gray); margin-top: 8px; }

/* ── CONTEÚDO ────────────────────────────────────────────── */
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.content-card {
  background: var(--black2);
  border: 1px solid rgba(245,240,232,0.06);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.content-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.content-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.content-card:hover::after { opacity: 1; }
.card-num      { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 16px; }
.content-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 12px; }
.content-card p  { font-size: 13px; color: rgba(245,240,232,0.5); line-height: 1.7; }

/* ── SOBRE ───────────────────────────────────────────────── */
.sobre-inner { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.sobre-content h2 { font-size: clamp(28px, 3.5vw, 56px); margin-bottom: 20px; }
.sobre-content p  { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.9; margin-bottom: 14px; }
.valores-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.valor-item   { display: flex; align-items: flex-start; gap: 16px; }
.valor-num    { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); min-width: 24px; }
.valor-text strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.valor-text p { font-size: 13px; color: rgba(245,240,232,0.5); margin: 0; line-height: 1.6; }
.mvv-cards { display: flex; flex-direction: column; gap: 16px; }
.mvv-card  { border: 1px solid rgba(201,168,76,0.2); padding: 28px 32px; position: relative; }
.mvv-card::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 2px; background: linear-gradient(180deg, var(--gold), transparent); }
.mvv-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 10px; }
.mvv-card p  { font-size: 13px; color: rgba(245,240,232,0.5); line-height: 1.7; margin: 0; }

/* ── NÚMEROS ─────────────────────────────────────────────── */
#numeros { border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }
.numeros-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.numero-item  { padding: 48px 24px; text-align: center; border-right: 1px solid rgba(245,240,232,0.07); }
.numero-item:last-child { border-right: none; }
.numero-item .n-val {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 3vw, 56px); font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.numero-item .n-plus  { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--gold); }
.numero-item .n-label { font-size: 11px; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 8px; }

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dep-card { background: var(--black); border: 1px solid rgba(245,240,232,0.07); padding: 40px 32px; position: relative; }
.dep-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 80px; color: rgba(201,168,76,0.15); line-height: 1; }
.dep-stars    { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.dep-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; line-height: 1.6; color: rgba(245,240,232,0.85); margin-bottom: 24px; }
.dep-author   { display: flex; align-items: center; gap: 14px; }
.dep-avatar   { width: 44px; height: 44px; border-radius: 50%; background: var(--gray2); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; flex-shrink: 0; }
.dep-info strong { display: block; font-size: 13px; }
.dep-info span   { font-size: 12px; color: var(--gray); }

/* cards de depoimento com imagem real */
.dep-img-card {
  border: 1px solid rgba(245,240,232,0.07);
  background: var(--white);
  display: flex;
  align-items: center;
}
.dep-img-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── ESPECIALISTA ────────────────────────────────────────── */
.espec-inner { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.espec-photo-wrap { position: relative; }
.espec-photo-wrap::before { content: ''; position: absolute; inset: -1px; background: linear-gradient(135deg, var(--gold) 0%, transparent 50%); z-index: 0; }
.espec-photo-wrap img { position: relative; z-index: 1; width: 100%; height: 600px; object-fit: cover; object-position: top; display: block; }
.espec-corner {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--black);
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
  z-index: 2; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px;
}
.espec-corner span { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--gold); line-height: 1.4; }
.espec-content h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 8px; }
.espec-content .espec-title { font-size: 13px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.espec-content p { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.9; margin-bottom: 14px; }
.certif-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.certif-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(245,240,232,0.7); }
.certif-item::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── CRONOGRAMA ──────────────────────────────────────────── */
.crono-card {
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 60px;
  position: relative; overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.crono-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); }
.crono-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.crono-item .ci-icon  { font-size: 28px; margin-bottom: 12px; }
.crono-item .ci-label { font-size: 10px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.crono-item .ci-value { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; line-height: 1.4; }

/* ── BÔNUS ───────────────────────────────────────────────── */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,0.1); }
.bonus-card { background: var(--black2); padding: 48px 36px; }
.bonus-badge { display: inline-block; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 24px; }
.bonus-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 12px; }
.bonus-card p  { font-size: 13px; color: rgba(245,240,232,0.5); line-height: 1.7; margin-bottom: 20px; }
.bonus-value   { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); }
.bonus-value span { text-decoration: line-through; opacity: 0.4; margin-right: 8px; font-size: 14px; }

/* ── CTA MID ─────────────────────────────────────────────── */
#cta-mid { text-align: center; position: relative; overflow: hidden; }
#cta-mid::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%); }
#cta-mid .wrap { position: relative; z-index: 1; }
#cta-mid h2 { font-size: clamp(28px, 4vw, 52px); max-width: 700px; margin: 0 auto 20px; }
#cta-mid p  { font-size: 16px; color: rgba(245,240,232,0.55); margin-bottom: 40px; }
.scarcity-tag { font-size: 12px; color: var(--gold); letter-spacing: 0.05em; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(245,240,232,0.08); }
.faq-q    { padding: 26px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 20px; user-select: none; gap: 20px; }
.faq-q:hover { color: var(--gold-light); }
.faq-icon { width: 28px; height: 28px; border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a         { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner   { padding-bottom: 24px; font-size: 14px; color: rgba(245,240,232,0.55); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── CTA FINAL ───────────────────────────────────────────── */
#cta-final { text-align: center; position: relative; overflow: hidden; }
#cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%); }
.deco-x { position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 600px; font-weight: 300; color: rgba(201,168,76,0.03); top: 50%; left: 50%; transform: translate(-50%,-50%); line-height: 1; pointer-events: none; user-select: none; }
#cta-final .wrap  { position: relative; z-index: 1; }
#cta-final h2     { font-size: clamp(32px, 5vw, 68px); max-width: 800px; margin: 0 auto 24px; }
#cta-final > .wrap > p { font-size: 16px; color: rgba(245,240,232,0.55); margin-bottom: 48px; }
.scarcity-block   { margin-top: 24px; }
.scarcity-block p { font-size: 13px; color: rgba(245,240,232,0.4); margin: 0; }
.scarcity-block strong { color: var(--danger); }

/* form-card centralizado na seção final */
#cta-final .form-card {
  margin: 0 auto;
  text-align: left;
}

/* ── RODAPÉ ──────────────────────────────────────────────── */
#rodape { border-top: 1px solid rgba(201,168,76,0.15); }
.rodape-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  margin-bottom: 36px;
}
.rodape-brand img { height: 40px; margin-bottom: 16px; }
.rodape-brand p   { font-size: 13px; color: rgba(245,240,232,0.4); line-height: 1.7; max-width: 280px; }
.rodape-col h5    { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.rodape-col a     { display: block; font-size: 13px; color: rgba(245,240,232,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.rodape-col a:hover { color: var(--white); }
.rodape-bottom    { display: flex; justify-content: space-between; align-items: center; }
.rodape-bottom p  { font-size: 12px; color: rgba(245,240,232,0.25); }
.social-links     { display: flex; gap: 16px; }
.social-link      { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; color: var(--gray); transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── MODAL PÓS-CADASTRO ──────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay[hidden] { display: none; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-inner {
  position: relative;
  background: var(--black2);
  border: 1px solid rgba(201,168,76,0.3);
  max-width: 520px; width: 100%;
  padding: 56px 48px;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.45s ease;
  opacity: 0;
}
.modal-overlay.is-open .modal-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* linha dourada topo */
.modal-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark), transparent);
}
/* canto decorativo */
.modal-inner::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-left: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

/* elemento decorativo de fundo */
.modal-deco {
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* tag de status */
.modal-step-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 7px 16px;
  margin-bottom: 28px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.modal-step-tag--wa {
  border-color: rgba(37,211,102,0.35);
  color: #25D366;
}
.dot--wa {
  background: #25D366 !important;
  animation: pulse-wa 2s infinite !important;
}
@keyframes pulse-wa {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

/* ícone */
.modal-icon-wrap {
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  animation: icon-float 3s ease-in-out infinite;
}
.modal-icon-wrap::before {
  content: '';
  position: absolute; inset: -4px;
  border: 1px solid rgba(201,168,76,0.1);
}
.modal-icon-wrap--wa {
  border-color: rgba(37,211,102,0.25);
}
.modal-icon-wrap--wa::before { border-color: rgba(37,211,102,0.1); }

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.modal-inner h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px; line-height: 1.15;
}
.modal-desc {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* linha de valores (formato / acesso / valor) */
.modal-value-row {
  display: flex; gap: 0;
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 32px;
}
.modal-value-item {
  flex: 1; padding: 14px 16px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.modal-value-item:last-child { border-right: none; }
.mvi-label { display: block; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.mvi-val   { display: block; font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; }

/* botão de download — shimmer animado */
.modal-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 20px 32px;
  border: none; cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  animation: shimmer 3s ease infinite;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 16px;
}
.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-icon { font-size: 18px; font-weight: 700; }

.modal-text-btn {
  display: block; width: 100%;
  background: none; border: none; cursor: pointer;
  font-family: 'Syne', sans-serif; font-size: 12px;
  letter-spacing: 0.1em; color: rgba(245,240,232,0.35);
  padding: 8px 0;
  transition: color 0.2s;
  text-align: center;
}
.modal-text-btn:hover { color: var(--gold); }

/* botão WhatsApp */
.btn-wa-primary {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #075e54, #128C7E, #25D366);
  background-size: 200% 200%;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 20px 32px;
  border: none; cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  animation: shimmer 3s ease infinite;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 24px;
}
.btn-wa-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}

/* benefícios WhatsApp */
.modal-wa-benefits {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.wa-benefit {
  font-size: 13px; color: rgba(245,240,232,0.6);
  padding-left: 4px;
}
.wa-benefit::first-letter { color: #25D366; }

/* copy row */
.modal-copy-wrap { margin-top: 4px; }
.modal-copy-label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.modal-copy-row {
  display: flex; gap: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
.modal-copy-input {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: none; outline: none;
  color: rgba(245,240,232,0.45);
  font-family: 'Syne', sans-serif; font-size: 12px;
  padding: 12px 14px;
  min-width: 0;
}
.modal-copy-btn {
  background: rgba(201,168,76,0.12);
  border: none; border-left: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-family: 'Syne', sans-serif; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 12px 20px; cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.modal-copy-btn:hover { background: rgba(201,168,76,0.22); }
.modal-copy-btn.copied { background: rgba(104,211,145,0.15); color: #68d391; border-left-color: rgba(104,211,145,0.2); }

/* botão fechar */
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(245,240,232,0.35);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.modal-close:hover {
  color: var(--white); border-color: rgba(245,240,232,0.3);
  background: rgba(255,255,255,0.08);
}

/* transição entre passos */
.modal-step { animation: step-enter 0.4s ease both; }
.modal-step.hidden { display: none; }
@keyframes step-enter {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-body              { grid-template-columns: 1fr; text-align: center; }
  .hero-content .subtitle { margin: 0 auto 40px; }
  .hero-date-block        { justify-content: center; }
  .form-card              { max-width: 100%; }
  .hero-image-wrap        { display: none; }

  .opo-inner,
  .sobre-inner,
  .espec-inner  { grid-template-columns: 1fr; gap: 48px; }

  .dor-grid               { grid-template-columns: 1fr 1fr; }
  .content-grid,
  .bonus-grid             { grid-template-columns: 1fr 1fr; }
  .numeros-grid           { grid-template-columns: repeat(3, 1fr); }
  .dep-grid               { grid-template-columns: 1fr; }
  .crono-grid             { grid-template-columns: repeat(2, 1fr); }
  .rodape-top             { grid-template-columns: 1fr 1fr; }

  .espec-photo-wrap img   { height: 400px; }
}

@media (max-width: 640px) {
  :root { --section-y: 64px; --section-y-lg: 80px; }

  .hero-nav img           { height: 72px; }
  .hero-nav .btn-outline  { display: none; }

  .dor-grid,
  .content-grid,
  .bonus-grid             { grid-template-columns: 1fr; }
  .numeros-grid           { grid-template-columns: repeat(2, 1fr); }
  .crono-grid             { grid-template-columns: 1fr 1fr; }
  .crono-card             { padding: 32px 24px; }

  .opo-stats              { grid-template-columns: 1fr; }

  .rodape-top             { grid-template-columns: 1fr; }
  .rodape-bottom          { flex-direction: column; gap: 16px; text-align: center; }

  .espec-corner           { width: 90px; height: 90px; bottom: -12px; right: -12px; }
}
