/* ============================================================
   SARA · 6 ANOS GERAÇÃO HERDEIRAS — Party / Celebration Landing
   Palette: Royal Blue + Gold + Champagne + Cream
============================================================ */
:root {
  --royal:        #122a8a;
  --royal-deep:   #0a1a5c;
  --royal-soft:   #2a47b8;
  --royal-glow:   #4a63cf;
  --gold:         #d4a637;
  --gold-light:   #f3d77a;
  --gold-bright:  #fae3a0;
  --gold-deep:    #a07c1e;
  --champagne:    #f6ecd0;
  --cream:        #fbf6ec;
  --paper:        #ffffff;
  --ink:          #14143b;
  --ink-soft:     #4d4d72;
  --muted:        #8a8aa6;
  --line:         rgba(18, 42, 138, 0.14);
  --line-gold:    rgba(212, 166, 55, 0.4);

  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; color: var(--royal-deep); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold-deep); font-weight: 600; }
.script { font-family: var(--font-script); color: var(--gold-deep); font-weight: 400; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, #fae3a0 0%, #d4a637 50%, #a07c1e 100%);
  color: var(--royal-deep);
  box-shadow: 0 8px 22px rgba(160,124,30,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
  border: 1px solid #e9c66a;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(160,124,30,0.5), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-royal {
  background: linear-gradient(135deg, var(--royal-soft), var(--royal-deep));
  color: #fff;
  box-shadow: 0 8px 22px rgba(10,26,92,0.35);
}
.btn-royal:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn .lucide { width: 18px; height: 18px; }

/* ============== SECTIONS ============== */
section { position: relative; padding: 110px 0; }
section + section { padding-top: 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-header h2 { font-size: clamp(36px, 5vw, 60px); }
.divider { width: 80px; height: 24px; margin: 18px auto 0; position: relative; }
.divider::before { content:''; position: absolute; top:50%; left:0; right:0; height:1px; background: var(--line-gold); }
.divider::after {
  content: '♛';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 10px;
  color: var(--gold);
  font-size: 14px;
}

/* ============== ANNIVERSARY SASH ============== */
.sash {
  background: linear-gradient(90deg, var(--royal-deep), var(--royal), var(--royal-deep));
  color: var(--gold-bright);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gold-deep);
  overflow: hidden;
}
.sash-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.sash-inner span.dot { width:6px; height:6px; border-radius:50%; background: var(--gold); }
.sash-inner .crown-anim { font-size: 18px; color: var(--gold-bright); animation: crownBounce 2.4s ease-in-out infinite; display:inline-block; }
@keyframes crownBounce { 0%,100%{ transform: translateY(0) rotate(-4deg);} 50%{ transform: translateY(-3px) rotate(4deg);} }

/* ============== NAVBAR ============== */
.navbar {
  position: sticky;
  top: 41px;
  z-index: 99;
  padding: 14px 0;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--line-gold); box-shadow: 0 6px 30px rgba(18,42,138,0.06); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--royal-deep);
  display: flex; align-items: center; gap: 10px;
}
.navbar-logo .crown { color: var(--gold); font-size: 18px; }
.navbar-logo .name { font-style: italic; color: var(--gold-deep); }
.btn-nav { padding: 11px 22px; font-size: 13px; }
@media (max-width: 640px) { .btn-nav { padding: 9px 16px; font-size: 12px; } .navbar-logo { font-size: 18px;} }

/* ============== HERO ============== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,166,55,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(18,42,138,0.06) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
}

/* Animated balloons */
.balloon {
  position: absolute;
  width: 70px;
  height: 100px;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(18,42,138,0.18));
  animation: floatY 6s ease-in-out infinite;
  z-index: 1;
}
.balloon.size-sm { width: 50px; height: 72px; }
.balloon.size-lg { width: 92px; height: 130px; }
.balloon.b1 { top: 5%;   left: 4%;  animation-delay: 0s; }
.balloon.b2 { top: 14%;  left: 14%; animation-delay: 1.2s; }
.balloon.b3 { top: 60%;  left: 6%;  animation-delay: 0.6s; }
.balloon.b4 { top: 8%;   right: 8%; animation-delay: 1.6s; }
.balloon.b5 { top: 35%;  right: 4%; animation-delay: 0.3s; }
.balloon.b6 { top: 70%;  right: 12%;animation-delay: 2s; }
.balloon.b7 { top: 28%;  left: 30%; animation-delay: 2.4s; }
.balloon.b8 { top: 78%;  left: 35%; animation-delay: 1.8s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

/* String wiggle */
.balloon svg { width: 100%; height: 100%; }

/* Confetti pieces falling globally */
.confetti-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.confetti-piece {
  position: absolute;
  width: 8px; height: 14px;
  top: -20px;
  border-radius: 1px;
  animation: confettiFall linear infinite;
  opacity: 0.85;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(105vh) rotate(720deg); opacity: 0.7; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; } }

.hero-anniv-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: linear-gradient(135deg, #fae3a0, #d4a637);
  color: var(--royal-deep);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(160,124,30,0.3);
  margin-bottom: 24px;
}
.hero-anniv-badge .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--royal-deep);
  color: var(--gold-bright);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  font-style: italic;
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  margin-bottom: 22px;
}
.hero h1 .script-line { display: block; font-family: var(--font-script); font-size: 0.55em; color: var(--royal-soft); font-weight: 400; transform: rotate(-2deg); margin-bottom: -4px; }
.hero h1 .accent { display: block; color: var(--gold-deep); font-style: italic; }
.hero h1 .you-line { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .countdown { justify-content: center; } }
.countdown-unit {
  background: linear-gradient(160deg, var(--royal-deep) 0%, var(--royal) 100%);
  color: var(--gold-bright);
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  min-width: 80px;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 4px 12px rgba(10,26,92,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.countdown-unit::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: 10px;
  border: 1px dashed rgba(212,166,55,0.4);
  pointer-events: none;
}
.countdown-unit .number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.countdown-unit .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--gold-light);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .hero-cta { justify-content: center; } }
.price-tag {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  color: var(--royal-deep);
  line-height: 1;
}
.price-tag .price-pre { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.price-tag .price-amount { font-size: 38px; font-weight: 700; font-style: italic; }
.price-tag .price-amount .cents { font-size: 16px; vertical-align: top; margin-left: 2px; }

/* Hero photo — balloon treatment */
.hero-photo-wrap { position: relative; max-width: 440px; margin: 0 auto; padding-top: 100px; padding-bottom: 80px; }
.hero-photo-frame {
  position: absolute;
  top: 88px;
  left: -16px;
  right: -16px;
  bottom: 92px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 46% 46% / 56% 56% 44% 44%;
  z-index: 1;
  animation: balloonFloat 5.5s ease-in-out infinite;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px dashed var(--line-gold);
  border-radius: inherit;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% 50% 46% 46% / 56% 56% 44% 44%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,26,92,0.22), inset 0 0 80px rgba(255,255,255,0.4);
  z-index: 2;
  background: var(--cream);
  animation: balloonFloat 5.5s ease-in-out infinite;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
/* Balloon highlight gloss */
.hero-photo::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 14%;
  width: 22%;
  height: 18%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
/* Balloon knot at bottom */
.balloon-knot {
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: 26px;
  height: 22px;
  transform: translateX(-50%);
  z-index: 3;
  animation: balloonFloat 5.5s ease-in-out infinite;
}
.balloon-knot svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15)); }
/* Balloon string going down to the tag */
.balloon-string {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 70px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.balloon-string svg { width: 100%; height: 100%; }
.hero-crown {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  filter: drop-shadow(0 8px 14px rgba(160,124,30,0.45));
  animation: crownTilt 4s ease-in-out infinite;
}
@keyframes balloonFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }
.hero-photo-frame { animation-delay: -0.05s; }
.balloon-knot { animation-delay: -0.05s; }
@keyframes crownTilt { 0%,100%{ transform: translateX(-50%) rotate(-3deg) translateY(0); } 50%{ transform: translateX(-50%) rotate(3deg) translateY(-4px); } }
.hero-photo-tag {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--royal-deep);
  color: var(--gold-bright);
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 5;
  border: 1px solid var(--gold);
  white-space: nowrap;
  /* Pennant/banner shape */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  padding-bottom: 16px;
}

/* Confetti cannons in hero */
.cannon {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.cannon.left { bottom: 8%; left: -2%; transform: rotate(-25deg); }
.cannon.right { bottom: 10%; right: -2%; transform: rotate(25deg) scaleX(-1); }
.cannon-body { width: 110px; height: 50px; }

/* Confetti burst from cannons */
.burst-piece {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 1px;
  animation: burst 3.6s ease-out infinite;
  transform-origin: center;
  opacity: 0;
}
@keyframes burst {
  0%   { transform: translate(0,0) rotate(0); opacity: 0; }
  4%   { opacity: 1; }
  100% { transform: var(--end-transform) rotate(720deg); opacity: 0; }
}

/* ============== ANNIV STRIP (count-up bar) ============== */
.anniv-strip {
  background: linear-gradient(135deg, var(--royal-deep) 0%, var(--royal) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  color: var(--gold-bright);
}
.anniv-strip::before {
  content:'';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, var(--gold) 0, var(--gold) 1.5px, transparent 2px),
    radial-gradient(circle at 88% 70%, #fae3a0 0, #fae3a0 1.5px, transparent 2px),
    radial-gradient(circle at 30% 80%, #fae3a0 0, #fae3a0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 20%, var(--gold) 0, var(--gold) 1px, transparent 1.5px);
  background-size: 60px 60px, 80px 80px, 50px 50px, 70px 70px;
  opacity: 0.5;
}
.anniv-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  align-items: center;
  gap: 36px;
}
@media (max-width: 900px) { .anniv-strip-inner { grid-template-columns: 1fr 1fr; gap: 28px; } .anniv-medal-cell { grid-column: 1 / -1; text-align: center; } }
.anniv-medal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
}
.anniv-medal .crown { font-size: 22px; color: var(--gold-bright); }
.anniv-medal-text { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--gold-bright); white-space: nowrap; }
.anniv-medal-text strong { font-weight: 700; font-style: normal; letter-spacing: 0.04em; }
.proof-item { text-align: center; position: relative; }
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.proof-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============== IDENTIF / PARA QUEM ============== */
.bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .bullets-grid { grid-template-columns: 1fr; } }
.bullet-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bullet-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(18,42,138,0.08); }
.bullet-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fae3a0, #d4a637);
  color: var(--royal-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bullet-ico svg { width: 22px; height: 22px; }
.bullet-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

/* ============== DAYS (programação) ============== */
.days-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
}
.days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) { .days-grid { grid-template-columns: 1fr; } }
.day-card {
  background: var(--paper);
  padding: 44px 38px 38px;
  border-radius: 20px;
  border: 1px solid var(--line-gold);
  position: relative;
  overflow: hidden;
}
.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep), var(--gold));
}
.day-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.day-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--royal);
  font-weight: 600;
  margin-bottom: 14px;
}
.day-card h3 { font-size: 30px; margin-bottom: 14px; }
.day-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* ============== SARA ABOUT ============== */
.sara-section { background: var(--cream); }
.sara-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .sara-inner { grid-template-columns: 1fr; gap: 50px; } }
.sara-photo {
  position: relative;
  border-radius: 6px;
  overflow: visible;
  aspect-ratio: 3/4;
  padding: 18px;
  background: linear-gradient(135deg, #fae3a0 0%, #d4a637 35%, #a07c1e 65%, #d4a637 100%);
  box-shadow: 0 30px 60px rgba(10,26,92,0.22);
}
.sara-photo::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(160,124,30,0.6);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.sara-photo .frame-corner {
  position: absolute;
  width: 38px;
  height: 38px;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.sara-photo .frame-corner.tl { top: -10px; left: -10px; }
.sara-photo .frame-corner.tr { top: -10px; right: -10px; transform: scaleX(-1); }
.sara-photo .frame-corner.bl { bottom: -10px; left: -10px; transform: scaleY(-1); }
.sara-photo .frame-corner.br { bottom: -10px; right: -10px; transform: scale(-1, -1); }
.sara-photo .photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.sara-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.sara-text h2 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 22px; }
.sara-text .section-eyebrow { margin-bottom: 14px; }
.sara-text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; line-height: 1.75; }
.sara-signature { font-family: var(--font-script); font-size: 44px; color: var(--gold-deep); display: block; margin-top: 18px; }

/* ============== TESTIMONIALS ============== */
.testimonials-section { background: var(--cream); position: relative; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
  opacity: 0.3;
}
.testimonial-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card blockquote { color: var(--ink); font-size: 15px; line-height: 1.65; margin-bottom: 20px; flex: 1; font-style: italic; font-weight: 400; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-soft), var(--royal-deep));
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  font-style: italic;
}
.author-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.author-location { font-size: 12px; color: var(--muted); }

/* WhatsApp screenshot proofs */
.whatsapp-strip {
  margin-top: 40px;
}
.whatsapp-header {
  text-align: center;
  margin-bottom: 28px;
}
.whatsapp-header h3 {
  font-size: 26px;
  font-style: italic;
  color: var(--royal-deep);
}
.whatsapp-header p { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .whatsapp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .whatsapp-grid { grid-template-columns: 1fr 1fr; gap: 12px;} }
.whatsapp-card {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 9/14;
  position: relative;
  box-shadow: 0 8px 22px rgba(18,42,138,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(18,42,138,0.14); }
.whatsapp-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.whatsapp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(18,42,138,0.18));
}

/* ============== PARA QUEM (split) ============== */
.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) { .para-quem-grid { grid-template-columns: 1fr; } }
.pq-col {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.pq-col.sim { border-color: var(--line-gold); background: linear-gradient(160deg, #fff 0%, #fefaee 100%); }
.pq-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.pq-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pq-col.nao .pq-ico { background: rgba(200, 60, 80, 0.12); color: #c83c50; }
.pq-col.sim .pq-ico { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--royal-deep); }
.pq-header h3 { font-size: 20px; font-family: var(--font-body); font-weight: 700; color: var(--royal-deep); }
.pq-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pq-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pq-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.pq-col.nao li svg { color: #c83c50; }
.pq-col.sim li svg { color: var(--gold-deep); }

/* ============== INCLUSO ============== */
.incluso-section { background: linear-gradient(180deg, var(--champagne) 0%, var(--cream) 100%); }
.incluso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 720px) { .incluso-grid { grid-template-columns: 1fr; } }
.incluso-item {
  display: flex;
  gap: 16px;
  background: var(--paper);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  align-items: flex-start;
}
.incluso-item.bonus {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fefaee 100%);
  position: relative;
}
.incluso-item.bonus::before {
  content: 'BÔNUS';
  position: absolute;
  top: -10px; right: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--royal-deep);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.inc-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(212,166,55,0.18);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.inc-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--royal-deep); margin-bottom: 4px; }
.inc-text p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ============== GARANTIA ============== */
.garantia-section { padding: 60px 0; }
.garantia-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 32px;
  border: 2px dashed var(--gold);
  border-radius: 20px;
  background: var(--paper);
  position: relative;
}
.garantia-shield {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--royal-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.garantia-shield svg { width: 32px; height: 32px; }
.garantia-card h3 { font-size: 28px; margin-bottom: 12px; }
.garantia-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ============== OFERTA ============== */
.oferta-section {
  background: linear-gradient(135deg, var(--royal-deep) 0%, var(--royal) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.oferta-section::before {
  content:'';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, #fae3a0 0, #fae3a0 2px, transparent 3px),
    radial-gradient(circle at 88% 70%, #d4a637 0, #d4a637 2px, transparent 3px),
    radial-gradient(circle at 60% 18%, #fae3a0 0, #fae3a0 1.5px, transparent 2px),
    radial-gradient(circle at 38% 88%, #d4a637 0, #d4a637 1px, transparent 1.5px),
    radial-gradient(circle at 12% 78%, #fae3a0 0, #fae3a0 1.5px, transparent 2px);
  background-size: 90px 90px, 110px 110px, 70px 70px, 60px 60px, 80px 80px;
  opacity: 0.55;
  pointer-events: none;
}
.oferta-section .section-header h2 { color: #fff; }
.oferta-section .section-eyebrow { color: var(--gold-bright); }
.oferta-section .section-eyebrow::before, .oferta-section .section-eyebrow::after { background: var(--gold); }
.oferta-section .divider::after { background: var(--royal-deep); color: var(--gold); }
.oferta-section .divider::before { background: var(--gold); }

.oferta-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 28px;
  padding: 50px 42px;
  text-align: center;
  position: relative;
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.oferta-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border: 2px dashed var(--gold);
  border-radius: 28px;
  pointer-events: none;
  opacity: 0.6;
  margin: -8px;
}
.oferta-pretext {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
.oferta-card h3 { font-size: clamp(32px, 5vw, 44px); margin-bottom: 12px; }
.oferta-card .desc { color: var(--ink-soft); margin-bottom: 28px; }
.oferta-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin: 24px 0;
  font-family: var(--font-display);
  color: var(--royal-deep);
}
.oferta-price .currency { font-size: 28px; font-weight: 600; }
.oferta-price .value { font-size: 84px; font-weight: 700; line-height: 1; font-style: italic; }
.oferta-price .cents { font-size: 28px; font-weight: 600; }
.oferta-pix {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.oferta-pix strong { color: var(--royal-deep); }
.oferta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212,166,55,0.18);
  color: var(--gold-deep);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 18px 0;
}
.oferta-tag svg { width: 14px; height: 14px; }
.oferta-security { margin-top: 20px; font-size: 12px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.oferta-security svg { width: 12px; height: 12px; }

/* ============== FAQ ============== */
.faq-section { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--royal-deep);
  font-family: var(--font-display);
  font-style: italic;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,166,55,0.18);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--royal-deep); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 26px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ============== CTA FINAL ============== */
.cta-final {
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
  text-align: center;
  padding: 100px 0;
}
.cta-final .script-tag {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 14px;
}
.cta-final h2 { font-size: clamp(36px, 5.5vw, 64px); margin-bottom: 18px; max-width: 820px; margin-left: auto; margin-right: auto; }
.cta-final p { font-size: 18px; color: var(--ink-soft); max-width: 580px; margin: 0 auto 32px; }

/* ============== FOOTER ============== */
footer { background: var(--royal-deep); color: rgba(255,255,255,0.6); padding: 36px 0; text-align: center; font-size: 13px; border-top: 1px solid var(--gold-deep); }
footer .footer-logo { font-family: var(--font-display); font-size: 22px; color: var(--gold-bright); display: block; margin-bottom: 8px; }

/* ============== MODAL ============== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 92, 0.65);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 22px;
  max-width: 460px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s;
  max-height: 92vh; overflow-y: auto;
}
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(18,42,138,0.08);
  color: var(--royal-deep);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(18,42,138,0.16); }
.modal-tag {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 8px;
}
.modal-title { font-size: 32px; line-height: 1.05; margin-bottom: 8px; }
.modal-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; }
.modal-field { margin-bottom: 14px; }
.modal-field label { display: block; font-size: 12px; font-weight: 600; color: var(--royal-deep); margin-bottom: 6px; letter-spacing: 0.04em; }
.modal-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,166,55,0.18); }
.modal-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #fae3a0, #d4a637, #a07c1e);
  color: var(--royal-deep);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.18s, box-shadow 0.25s;
  position: relative;
  border: 1px solid #e9c66a;
}
.modal-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(160,124,30,0.4); }
.modal-submit .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(10,26,92,0.3); border-top-color: var(--royal-deep); border-radius: 50%; animation: spin 0.7s linear infinite; }
.modal-submit.loading .btn-text, .modal-submit.loading .lucide { display: none; }
.modal-submit.loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal-privacy { font-size: 12px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.modal-privacy svg { width: 12px; height: 12px; }

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
