/* ===========================================================
   DANI MEGER — PREMIUM EDITORIAL SYSTEM
   Consultoria Financeira · Wealth Management Aesthetic
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96D;
  --gold-dark:  #8B6914;
  --bg:         #0A0806;
  --bg-alt:     #0F0C07;
  --surface:    rgba(201,168,76,0.04);
  --surface2:   rgba(201,168,76,0.08);
  --border:     rgba(201,168,76,0.12);
  --text:       #F0E8D8;
  --text-dim:   rgba(240,232,216,0.55);
  --text-muted: #9A8264;
  --danger:     #C94C4C;
  --font:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY SYSTEM ===== */

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow-light { color: var(--gold-light); }

.display-heading {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 16px;
}

.accent-line {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 64px;
  font-style: italic;
}

.body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.body-text strong { color: var(--gold-light); font-weight: 600; }

/* ===== REVEAL ===== */

.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== SECTION SPACING ===== */

.section-block {
  padding: 120px 0;
  position: relative;
}

.section-alt { background: var(--bg-alt); }

/* =============================================================
   HERO — Blenduca Template (Editorial Adaptation)
   ============================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg) url('hero-desktop.png') no-repeat right center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,8,6,0.92) 0%,
    rgba(10,8,6,0.7) 38%,
    rgba(10,8,6,0.15) 100%
  );
  z-index: 1;
}

@media (min-width: 769px) {
  .hero-overlay {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 0 0 0 8vw;
}

.hero-authority {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-authority-item {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.hero-authority-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
}

.btn-hero {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 20px 48px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(201,168,76,0.55);
}

.hero-image {
  display: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* =============================================================
   PARADOXO — Timeline Narrative
   ============================================================= */

.timeline {
  margin: 0 0 80px;
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 1;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 0 0 48px 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.5);
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(232, 201, 109, 0.6);
}

.timeline-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font);
  flex-shrink: 0;
  min-width: 40px;
  transition: transform 0.3s ease;
  
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
}

.timeline-item:hover .timeline-number {
  transform: translateX(4px);
}

.timeline-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* Editorial callout */
.editorial-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 48px 56px;
}

.editorial-callout-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.editorial-callout p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.editorial-callout p:last-child { margin-bottom: 0; }
.editorial-callout strong { color: var(--text); }

/* =============================================================
   METODOLOGIA — Split Layout + Report Card
   ============================================================= */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text .display-heading { margin-bottom: 28px; }

/* --- Report Card (Glassmorphic) --- */

.report-card { position: relative; }

.report-card-glow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
}

.report-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, rgba(201,168,76,0.08), rgba(10,8,6,0.7));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.report-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.report-head-left svg { color: var(--gold); }

.report-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
}

.report-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
}

.report-user-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.report-user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.report-metrics { display: flex; flex-direction: column; gap: 16px; }

.report-metric-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.metric-val { color: var(--gold); font-weight: 800; }
.metric-danger { color: var(--danger); }

.report-bar {
  height: 6px;
  background: rgba(201,168,76,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.report-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.report-bar-danger {
  background: linear-gradient(90deg, var(--danger), #d66);
}

.report-foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.report-foot svg { color: var(--gold); flex-shrink: 0; }

/* =============================================================
   DESCOBRIR — Horizontal Cards (< 120px height)
   ============================================================= */

.discover-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
}

.discover-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s, background 0.3s;
  max-height: 120px;
}

.discover-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: var(--surface2);
}

.discover-num {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  min-width: 52px;
}

.discover-card:hover .discover-num {
  opacity: 1;
  transform: scale(1.05);
}

.discover-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.discover-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================================
   SOBRE — Photo Protagonist + Stats
   ============================================================= */

.about-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.about-photo-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
}

.about-content .display-heading {
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0 36px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stat { text-align: left; }

.about-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.about-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-credential svg { color: var(--gold); flex-shrink: 0; }

/* =============================================================
   CTA / DIAGNÓSTICO — Most Impactful Section
   ============================================================= */

.section-cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,0.06), transparent),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(201,168,76,0.04), transparent),
    var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-checklist li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

.cta-urgency {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.65;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Form card */
.form-card {
  background: linear-gradient(165deg, rgba(201,168,76,0.07), rgba(10,8,6,0.8));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.form-card-header {
  margin-bottom: 28px;
}

.form-card-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

#lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input {
  background: rgba(10,8,6,0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.88rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder { color: rgba(154,130,100,0.4); }

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px 24px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  line-height: 1.3;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(201,168,76,0.5);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.6;
}

.form-privacy svg { flex-shrink: 0; color: var(--gold); }

/* ===== CTA QUIZ PREVIEW ===== */

.cta-quiz-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.cta-quiz-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.3s, background 0.3s;
}

.cta-quiz-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.07);
}

.cta-quiz-num {
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  min-width: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
}

.cta-quiz-more {
  font-style: italic;
  opacity: 0.6;
  border-style: dashed;
  justify-content: center;
}

.cta-quiz-more span {
  font-size: 0.78rem;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,0.06);
  padding: 32px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
  .hero-content { width: 55%; padding-left: 5vw; }
  .hero-image   { width: 45%; }
  .split-layout { gap: 48px; }
  .about-layout { grid-template-columns: 360px 1fr; gap: 56px; }
}

@media (max-width: 900px) {
  .section-block { padding: 100px 0; }
  .split-layout  { grid-template-columns: 1fr; gap: 48px; }
  .about-layout  { grid-template-columns: 1fr; gap: 48px; }
  .about-photo   { max-width: 450px; margin: 0 auto; }
  .cta-layout    { grid-template-columns: 1fr; gap: 48px; }
  .timeline-item { padding-left: 28px; gap: 16px; }
  .timeline-item::before { left: 5px; }
  .timeline::before { left: 8px; }
  .timeline-number { font-size: 1.3rem; min-width: 32px; }
  .hero-authority { flex-wrap: wrap; gap: 10px; }
  .about-stats   { gap: 24px; }
  .form-row      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* 1. GRID MOBILE CONSISTENTE & RESPIRO ENTRE SEÇÕES */
  .container {
    padding: 0 24px;
    width: 100%;
    max-width: 100%;
  }

  .section-block {
    padding: 80px 0; /* 80px entre seções principais */
  }

  /* 3. MELHORAR A HIERARQUIA DOS TÍTULOS */
  .display-heading {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 48px; /* 48px entre título e conteúdo */
    letter-spacing: -0.02em;
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .lead-text {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .accent-line {
    font-size: 0.98rem;
    margin-bottom: 48px;
  }

  /* Hero mobile — Blenduca */
  .hero {
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    background: var(--bg);
  }

  .hero-content {
    width: 100%;
    padding: 28px 20px 40px;
    position: absolute;
    bottom: 0;
    z-index: 2;
  }

  .hero-image {
    display: block;
    width: 100%;
    height: 100vh;
    height: 100svh;
  }

  .hero-image img {
    content: url('hero-mobile.png');
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,8,6,0.05) 0%,
      rgba(10,8,6,0.4) 40%,
      rgba(10,8,6,0.88) 65%,
      rgba(10,8,6,0.98) 100%
    );
  }

  .hero-authority { margin-bottom: 20px; }
  .hero-authority-item { font-size: 0.58rem; }

  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.88rem; margin-bottom: 28px; }

  .btn-hero {
    width: 100%;
    padding: 18px 24px;
    font-size: 0.85rem;
  }

  /* TIMELINE (O PARADOXO) */
  .timeline {
    margin: 0 0 64px;
    padding-left: 0;
  }
  
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    padding-left: 24px;
    gap: 12px;
    padding-bottom: 40px;
  }
  
  .timeline-item::before {
    left: 5px;
    top: 10px;
  }

  .timeline-number {
    font-size: 1.1rem;
    min-width: 24px;
  }

  /* 5. & 6. O QUE VOCÊ VAI DESCOBRIR (CARDS INDEPENDENTES) */
  .discover-grid {
    display: flex;
    flex-direction: column;
    gap: 24px; /* 24px entre elementos relacionados */
    margin-top: 48px;
  }

  .discover-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 24px; /* Mais padding interno */
    background: linear-gradient(165deg, rgba(201,168,76,0.06), rgba(10,8,6,0.5));
    border: 1px solid var(--border);
    border-radius: 16px;
    max-height: unset;
    min-height: unset;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .discover-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-2px);
  }

  .discover-num {
    font-size: 2.2rem; /* Numeração mais destacada */
    font-weight: 800;
    line-height: 1;
    min-width: unset;
    display: block;
  }

  .discover-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px; /* Título e descrição melhor separados */
  }

  .discover-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dim);
  }

  /* 7. REFAZER A SEÇÃO DA DANI MEGER */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px; /* Mais espaço entre foto e texto */
  }

  .about-photo {
    max-width: 100%;
    margin: 0;
  }

  .about-photo img {
    border-radius: 16px;
    width: 100%;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 48px 0 36px;
    padding: 0;
    border: none;
  }

  .about-stat {
    background: linear-gradient(165deg, rgba(201,168,76,0.05), rgba(10,8,6,0.5));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
  }

  .about-stat:nth-child(3) {
    grid-column: span 2;
  }

  .about-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold);
    text-align: center;
  }

  .about-stat-label {
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
  }

  .about-credentials {
    gap: 16px;
  }

  .about-credential {
    font-size: 0.88rem;
    align-items: flex-start;
    gap: 12px;
  }

  .about-credential svg {
    margin-top: 3px;
  }

  /* 8. MELHORAR A SEÇÃO DOS BENEFÍCIOS (CTA CHECKLIST) */
  .cta-checklist {
    gap: 20px; /* Mais espaçamento vertical */
    margin-bottom: 40px;
  }

  .cta-checklist li {
    font-size: 0.92rem;
    line-height: 1.6;
    align-items: flex-start; /* Melhor alinhamento dos ícones/bullets */
    gap: 16px; /* Maior separação */
  }

  .cta-checklist li::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: 8px; /* Alinha com a primeira linha de texto */
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    opacity: 0.8;
  }

  /* 9. REFAZER O FORMULÁRIO FINAL */
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .form-card {
    padding: 48px 24px; /* Mais padding interno */
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(165deg, rgba(201,168,76,0.1), rgba(10,8,6,0.9));
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  }

  .form-card-header {
    margin-bottom: 36px;
    text-align: center;
  }

  .form-card-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .form-card-header p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  #lead-form {
    gap: 20px; /* Melhor espaçamento entre campos */
  }

  .form-group label {
    font-size: 0.72rem;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
  }

  .form-input {
    padding: 18px 20px; /* Campos mais altos */
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .btn-submit {
    padding: 22px 28px; /* CTA mais destacado */
    font-size: 0.95rem;
    border-radius: 14px;
    margin-top: 12px;
    box-shadow: 0 12px 40px rgba(201,168,76,0.45);
    font-weight: 800;
  }

  .editorial-callout {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .hero-authority-sep { display: none; }
  .hero-authority { flex-direction: column; gap: 4px; align-items: flex-start; }
  .container { padding: 0 20px; }
  .form-card {
    padding: 36px 20px;
  }
}
