/* =============================================
   MÉTODO PATRIMÔNIO SEGURO™ — Folha de Estilos
   ============================================= */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --gold:        #D4AF37;
  --gold-light:  #F4E4BA;
  --gold-dark:   #B8962E;
  --gold-glow:   rgba(212, 175, 55, 0.25);
  --gold-subtle: rgba(212, 175, 55, 0.08);

  --bg-base:     #0a0a0a;
  --bg-surface:  #111111;
  --bg-card:     #161616;
  --bg-elevated: #1c1c1c;

  --text-primary:   #f0ebe0;
  --text-secondary: #a09880;
  --text-muted:     #5a5040;

  --border:       rgba(212, 175, 55, 0.15);
  --border-hover: rgba(212, 175, 55, 0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 100px;

  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.2);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1100px;
  --section-padding: 100px 0;
}

/* =============================================
   COUNTDOWN BAR — Barra fixa de urgência
   ============================================= */
.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(135deg, #1a1200 0%, #2a1e00 50%, #1a1200 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.countdown-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-bar-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 4px 10px;
  min-width: 48px;
}

.countdown-unit span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-unit small {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.countdown-sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin: 0 2px;
  padding-bottom: 12px;
}

.countdown-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(212,175,55,0.3);
}

.countdown-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .countdown-bar-text { display: none; }
  .countdown-bar-inner { gap: 12px; }
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

input, button {
  font-family: inherit;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--gold-subtle);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.btn-xl {
  font-size: 1.2rem;
  padding: 22px 56px;
  width: 100%;
  max-width: 500px;
}

.btn-full {
  width: 100%;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(212,175,55,0.3); }
  50%       { box-shadow: 0 8px 48px rgba(212,175,55,0.6); transform: translateY(-1px); }
}

.pulse-animation {
  animation: pulse 2.5s ease-in-out infinite;
}

.animate-in {
  animation: fadeInUp 0.7s ease-out forwards;
}

/* =============================================
   POPUP
   ============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.popup-close:hover { color: var(--text-primary); }

.popup-badge {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.popup-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.popup-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-form input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.popup-form input:focus {
  border-color: var(--gold);
}

.popup-form input::placeholder {
  color: var(--text-muted);
}

.popup-privacy {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 70% 80%, rgba(212,175,55,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out forwards;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.7s 0.1s ease-out both;
}

.headline-qualifier {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: normal;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0;
}

.hero-subheadline {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  animation: fadeInUp 0.7s 0.2s ease-out both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s ease-out both;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  animation: fadeInUp 0.7s 0.4s ease-out both;
}

.proof-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -10px;
  background: var(--bg-elevated);
}

.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #8B7355, #C4A882); }
.av2 { background: linear-gradient(135deg, #6B5344, #A08060); }
.av3 { background: linear-gradient(135deg, #9B7B5A, #D4A870); }
.av4 { background: linear-gradient(135deg, #7B6050, #B09070); }

/* VSL */
.vsl-container {
  margin-top: 60px;
}

.vsl-wrapper {
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), 0 0 60px rgba(212,175,55,0.08);
}

.vsl-placeholder {
  background: var(--bg-surface);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.vsl-inner {
  text-align: center;
  color: var(--text-secondary);
}

.vsl-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #0a0a0a;
  padding-left: 4px;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition);
}

.vsl-placeholder:hover .vsl-play-icon {
  transform: scale(1.08);
}

/* =============================================
   PAIN SECTION
   ============================================= */
.section-pain {
  padding: var(--section-padding);
  background: var(--bg-surface);
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 48px 0 40px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}

.pain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pain-icon {
  font-size: 2rem;
  line-height: 1;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pain-closing {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pain-closing strong {
  color: var(--text-primary);
}

/* =============================================
   VALIDATION SECTION
   ============================================= */
.section-validation {
  padding: var(--section-padding);
}

.validation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.validation-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.validation-text p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.validation-text strong {
  color: var(--text-primary);
}

.validation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.validation-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
}

.validation-card blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.author-1 { background: linear-gradient(135deg, #8B7355, #C4A882); }

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   TRANSFORMATION SECTION
   ============================================= */
.section-transformation {
  padding: var(--section-padding);
  background: var(--bg-surface);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.transform-col-label {
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-align: center;
}

.before-label {
  background: rgba(239, 68, 68, 0.08);
  color: #F87171;
  border: 1px solid rgba(239,68,68,0.2);
}

.after-label {
  background: rgba(34, 197, 94, 0.08);
  color: #4ADE80;
  border: 1px solid rgba(34,197,94,0.2);
}

.transformation-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.before-col {
  border-color: rgba(239,68,68,0.2);
}

.after-col {
  border-color: rgba(34,197,94,0.2);
}

.transform-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.before-col .transform-list li {
  color: #F87171;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.before-col .transform-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: rgba(239,68,68,0.5);
}

.after-col .transform-list li {
  color: #4ADE80;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.after-col .transform-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(34,197,94,0.6);
}

.transformation-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.divider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

/* =============================================
   METHOD SECTION
   ============================================= */
.section-method {
  padding: var(--section-padding);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.module-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.module-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.module-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.module-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.method-cta {
  text-align: center;
}

/* =============================================
   BONUSES SECTION
   ============================================= */
.section-bonuses {
  padding: var(--section-padding);
  background: var(--bg-surface);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transition: border-color var(--transition);
}

.bonus-card:hover {
  border-color: var(--border-hover);
}

.bonus-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  display: inline-block;
  align-self: center;
}

.bonus-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin: 4px 0;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.bonus-value {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
}

.urgency-bar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.urgency-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.urgency-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.urgency-text strong {
  color: var(--gold);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.section-testimonials {
  padding: var(--section-padding);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 48px 0 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.test-av1 { background: linear-gradient(135deg, #8B7355, #C4A882); }
.test-av2 { background: linear-gradient(135deg, #6D5B4B, #A88060); }
.test-av3 { background: linear-gradient(135deg, #9B6B5A, #D48870); }
.test-av4 { background: linear-gradient(135deg, #7B5B50, #B08878); }
.test-av5 { background: linear-gradient(135deg, #8B6055, #C49080); }
.test-av6 { background: linear-gradient(135deg, #7B7050, #C0A870); }

.test-name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.test-location {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   EXPERT SECTION
   ============================================= */
.section-expert {
  padding: var(--section-padding);
  background: var(--bg-surface);
}

.expert-content {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.expert-photo-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 32px;
}

.expert-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
}

.expert-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.expert-photo-placeholder::after {
  content: '📸';
  font-size: 3rem;
  opacity: 0.15;
}

.expert-credentials {
  display: flex;
  gap: 16px;
}

.credential-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.credential-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.credential-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.expert-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expert-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}

.expert-text p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.expert-text strong {
  color: var(--text-primary);
}

.expert-quote {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* =============================================
   LEAD SECTION
   ============================================= */
.section-lead {
  padding: var(--section-padding);
}

.lead-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.lead-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.lead-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-form-row input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.lead-form-row input:focus {
  border-color: var(--gold);
}

.lead-form-row input::placeholder {
  color: var(--text-muted);
}

.lead-form-row .btn {
  white-space: nowrap;
}

.lead-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.section-faq {
  padding: var(--section-padding);
  background: var(--bg-surface);
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  border-top: 1px solid var(--border);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.75;
  padding-top: 20px;
}

/* =============================================
   OFFER SECTION
   ============================================= */
.section-offer {
  padding: var(--section-padding);
}

.offer-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--bg-card) 0%, #0f0f0f 100%);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 0 80px rgba(212,175,55,0.08);
}

.offer-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.offer-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.offer-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
}

.offer-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
  text-align: left;
}

.offer-include-item {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
}

.offer-pricing {
  margin-bottom: 40px;
}

.offer-old-price {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-decoration: line-through;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.price-cents {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.offer-installments {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.offer-installments strong {
  color: var(--gold);
}

.offer-discount-badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-pill);
  color: #4ADE80;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
}

.offer-guarantees {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 36px 0 28px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.guarantee-icon {
  font-size: 1.5rem;
}

.guarantee-item div:last-child {
  text-align: left;
}

.guarantee-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.guarantee-item span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.offer-urgency {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 24px;
}

.offer-urgency strong {
  color: var(--gold);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 680px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  :root {
    --section-padding: 72px 0;
  }

  .validation-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transformation-divider {
    padding: 0;
    transform: rotate(90deg);
  }

  .expert-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expert-photo-area {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 56px 0;
  }

  .hero-section {
    padding: 80px 0 48px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
  }

  .lead-card {
    padding: 48px 24px;
  }

  .lead-form-row {
    flex-direction: column;
  }

  .offer-card {
    padding: 48px 24px;
  }

  .offer-includes {
    grid-template-columns: 1fr;
  }

  .offer-guarantees {
    gap: 20px;
  }

  .popup-box {
    padding: 36px 24px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .testimonials-stats {
    gap: 28px;
  }
}