/* ============================================================
   PSIQUIATRIA 360° — Landing Page
   Palette & type derived from the brand logo (oxblood + gold)
   Typographic DNA from VitaLux DS (Cinzel / Cormorant / Montserrat)
   ============================================================ */

:root {
  /* ---- Brand core (sampled from the logo) ---- */
  --gold:        #C79A3B;
  --gold-bright: #E3C176;
  --gold-pale:   #F0DCA7;
  --gold-deep:   #9A6E22;
  --gold-wash:   #F4E7C9;

  --oxblood:      #3A0E0C;  /* brain left half / darkest */
  --oxblood-700:  #4A1410;
  --oxblood-600:  #5A1A12;
  --oxblood-500:  #6E2417;

  --ink:        #1C0F0B;
  --cocoa:      #4A3429;   /* warm body text */
  --cocoa-soft: #7A6354;   /* secondary text */
  --cocoa-faint:#A2897A;

  --ivory:      #F7EFE2;   /* page bg */
  --ivory-2:    #FBF6EC;   /* raised cards */
  --cream-line: #E7D9C2;   /* hairlines on ivory */
  --white:      #FFFFFF;

  /* ---- Type families ---- */
  --f-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --f-serif:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-sans:    "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 360ms;

  /* ---- Radii ---- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --container: 1180px;

  --shadow-card: 0 18px 50px rgba(58,14,12,0.10), 0 4px 12px rgba(58,14,12,0.06);
  --shadow-gold: 0 14px 34px rgba(154,110,34,0.32);
}

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

html { scroll-behavior: smooth; }

/* ============================================================
   Custom scrollbar (oxblood track · gold thumb)
   ============================================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #2C0A08;
}
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #2C0A08; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  border-radius: 999px;
  border: 3px solid #2C0A08;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--gold-bright) 50%, var(--gold) 100%);
}
::-webkit-scrollbar-corner { background: #2C0A08; }

/* ============================================================
   Scroll progress bar (top, gold)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold-pale));
  box-shadow: 0 0 12px rgba(227,193,118,0.55), 0 1px 4px rgba(154,110,34,0.4);
  z-index: 1500;
  pointer-events: none;
  transition: width 0.12s linear;
}

body {
  font-family: var(--f-sans);
  background: var(--ivory);
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* film grain texture overlay across the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-bright); }

h1, h2, h3 { font-family: var(--f-serif); font-weight: 600; line-height: 1.06; color: var(--ink); letter-spacing: -0.01em; }

.display {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.02;
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
}
.lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: var(--cocoa-soft);
}
.gold-text { color: var(--gold-deep); }
.on-dark .gold-text, .gold-text.on-dark { color: var(--gold-bright); }

.gold-script {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
}

/* Numeração: Montserrat (sem bold) · 360 / Psiquiatria 360 em Cinzel */
.f-num,
.cd-unit .v,
.program-num span:last-child,
.about-stat .n,
.price-installment,
.price-installment .x,
.price-installment .amt,
.price-installment .cents,
.price-cash b,
.price-dates,
.sticky-cta .s-info .a,
.sticky-cta .s-info .b {
  font-family: var(--f-sans);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-style: normal;
}

/* Inline number wrapper (auto-aplicado pelo JS): figuras proporcionais.
   Com tabular-nums o último dígito ganha side-bearing e abre um vão antes
   da vírgula nas datas (vira "04 , 05"). O countdown mantém o tabular pelo
   próprio seletor .cd-unit .v (não é .f-num), evitando o jitter por segundo. */
.f-num { font-variant-numeric: proportional-nums; }

.f-num-brand {
  font-family: var(--f-display);
  font-weight: 600;
  font-style: normal;
  font-variant-numeric: normal;
}

/* gold metallic text for big numerals/wordmarks */
.metal {
  font-family: var(--f-sans);
  background: linear-gradient(178deg, #F3E3B0 0%, #E3C176 28%, #C79A3B 52%, #9A6E22 74%, #E3C176 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --b-pad-y: 18px;
  --b-pad-x: 36px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: var(--b-pad-y) var(--b-pad-x);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-gold {
  background: linear-gradient(135deg, #F0DCA7 0%, #E3C176 35%, #C79A3B 70%, #9A6E22 100%);
  color: var(--oxblood);
  box-shadow: var(--shadow-gold);
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { left: -120%; }
  80%, 100% { left: 160%; }
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(154,110,34,0.42); filter: brightness(1.04); }
.btn-gold:active { transform: translateY(-1px) scale(0.99); }

.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid rgba(227,193,118,0.55);
}
.btn-outline:hover { border-color: var(--gold-bright); background: rgba(227,193,118,0.08); transform: translateY(-2px); }

.btn-lg { --b-pad-y: 22px; --b-pad-x: 46px; font-size: 16px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(247,239,226,0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream-line), 0 8px 28px rgba(58,14,12,0.06);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-lockup img { height: 46px; width: auto; transition: height var(--dur) var(--ease); }
.scrolled .brand-lockup img { height: 40px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: #FBF1E6;
  transition: color var(--dur) var(--ease);
}
.scrolled .brand-word b { color: var(--oxblood); }
.brand-word span {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  margin-top: 3px;
  white-space: nowrap;
}
.scrolled .brand-word span { color: var(--gold-deep); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.header-date {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  color: #EAD7C6;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.scrolled .header-date { color: var(--cocoa); }
.header-date svg { width: 17px; height: 17px; color: var(--gold-bright); }
.scrolled .header-date svg { color: var(--gold-deep); }
.header-cta { --b-pad-y: 13px; --b-pad-x: 26px; font-size: 12.5px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(110,36,23,0.55) 0%, transparent 55%),
    radial-gradient(90% 80% at 12% 90%, rgba(154,110,34,0.22) 0%, transparent 60%),
    linear-gradient(155deg, #2C0A08 0%, #3A0E0C 42%, #5A1A12 100%);
  color: #F3E4D8;
  overflow: hidden;
  padding: 168px 0 110px;
}
.hero::before {
  content: "360°";
  position: absolute;
  right: -3%;
  bottom: -16%;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 30vw;
  line-height: 1;
  color: rgba(227,193,118,0.05);
  pointer-events: none;
  letter-spacing: -0.02em;
}
/* ============================================================
   Hero responsive banners — one image per breakpoint, each
   min-height matches the image proportion so it never stretches.
   Tablet+ : Dra. Inês on the right, text on the left.
   Mobile  : Dra. Inês on top, text below (portrait composition).
   ============================================================ */
/* From tablet up the section IS the banner (text left / Dra right) */
@media (min-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
    padding: 120px 0 56px;
  }
  .hero > .container { width: 100%; }
}
/* Desktop ≥1367px — HERO 1920×902 (ratio 0.4698) */
@media (min-width: 1367px) {
  .hero {
    min-height: 46.98vw;
    background:
      linear-gradient(95deg, #2C0A08 0%, rgba(44,10,8,0.86) 26%, rgba(44,10,8,0.42) 46%, rgba(44,10,8,0.05) 62%, transparent 74%),
      url("assets/hero/HERO---DESKTOPHERO.webp") right center / cover no-repeat,
      linear-gradient(155deg, #2C0A08 0%, #3A0E0C 42%, #5A1A12 100%);
  }
}
/* Notebook 1025–1366px — 1366×867 (ratio 0.6347) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .hero {
    min-height: 63.5vw;
    background:
      linear-gradient(95deg, #2C0A08 0%, rgba(44,10,8,0.85) 24%, rgba(44,10,8,0.38) 44%, rgba(44,10,8,0.04) 60%, transparent 72%),
      url("assets/hero/HERO---DESKTOPNOTEBOOK.webp") right center / cover no-repeat,
      linear-gradient(155deg, #2C0A08 0%, #3A0E0C 42%, #5A1A12 100%);
  }
}
/* Tablet / iPad 768–1024px — 1024×867 (ratio 0.8467) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: 84.7vw;
    background:
      linear-gradient(95deg, #2C0A08 0%, rgba(44,10,8,0.84) 22%, rgba(44,10,8,0.32) 42%, transparent 58%),
      url("assets/hero/HERO---DESKTOPIPAD.webp") right center / cover no-repeat,
      linear-gradient(155deg, #2C0A08 0%, #3A0E0C 42%, #5A1A12 100%);
  }
}
/* Mobile ≤767px — 767×1657 portrait: Dra on top, text in the dark area below */
@media (max-width: 767px) {
  .hero {
    overflow: hidden;
    padding: 92vw 0 56px;
    /* the image's lower 30% is a flat #3A0C09, so the section's solid
       fallback uses that exact tone → no visible seam where the image ends */
    background:
      url("assets/hero/HERO---DESKTOPMOBILE.webp") top center / 100% auto no-repeat,
      #3A0C09;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 26px;
}
.hero-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-pale);
}
.hero-meta .chip svg { width: 18px; height: 18px; color: var(--gold-bright); }

.hero h1 {
  color: #FBF1E6;
  font-size: clamp(2.05rem, 3.35vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }

.hero-statement {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin-bottom: 26px;
  font-family: var(--f-serif);
  font-size: 1.32rem;
  line-height: 1.4;
  color: #EAD7C6;
}
.hero-statement b { color: var(--gold-bright); font-weight: 600; }

.hero-sub { color: #D9C3B3; font-size: 16px; max-width: 46ch; margin-bottom: 30px; }
.hero-sub b { color: #F3E4D8; font-weight: 600; }

.date-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(227,193,118,0.3);
  background: rgba(227,193,118,0.06);
  font-size: 13.5px;
  font-weight: 600;
  color: #EAD7C6;
}
.date-pill svg { width: 18px; height: 18px; color: var(--gold-bright); }
.date-pill.vip { border-color: rgba(227,193,118,0.6); background: rgba(227,193,118,0.12); }
.date-pill b { color: var(--gold-bright); }

.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-cta-note { font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--gold-pale); display:flex; align-items:center; gap:11px; }
.hero-cta-note .note-ico {
  width: 30px; height: 30px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(227,193,118,0.32), rgba(227,193,118,0.08));
  border: 1px solid rgba(227,193,118,0.45);
  box-shadow: 0 0 18px rgba(227,193,118,0.22), inset 0 0 8px rgba(227,193,118,0.18);
  flex-shrink: 0;
  animation: note-flame-pulse 2.4s var(--ease) infinite;
}
.hero-cta-note .note-ico svg { width: 16px; height: 16px; color: var(--gold-bright); }
@keyframes note-flame-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(227,193,118,0.18), inset 0 0 8px rgba(227,193,118,0.16); }
  50%      { box-shadow: 0 0 26px rgba(227,193,118,0.40), inset 0 0 10px rgba(227,193,118,0.26); }
}

/* hero portrait column — invisible spacer that holds the floating badge
   in the same spot it occupied over the old photo (right side, lower) */
.hero-figure {
  position: relative;
  align-self: stretch;
}
.hero-badge {
  position: absolute;
  z-index: 5;
  left: -30px;
  bottom: 42px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(150deg, #FDFAF2 0%, #F6EBD0 60%, #EFDDB6 100%);
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  padding: 16px 22px 16px 20px;
  box-shadow: 0 22px 50px rgba(44,10,8,0.42), inset 0 1px 0 rgba(255,255,255,0.7);
}
/* gold foil top edge */
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(227,193,118,0.85) 45%, rgba(154,110,34,0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-badge-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 0.9;
  background: linear-gradient(160deg, #E3C176 0%, #9A6E22 55%, #C79A3B 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.hero-badge-rule {
  width: 1px;
  align-self: stretch;
  margin: 2px 0;
  background: linear-gradient(180deg, transparent, rgba(154,110,34,0.55), transparent);
}
.hero-badge-lbl {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.2;
}
.hero-badge-lbl b {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  color: var(--oxblood);
  margin-bottom: 3px;
}

/* countdown */
.countdown {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.cd-unit {
  min-width: 64px;
  text-align: center;
  background: rgba(227,193,118,0.08);
  border: 1px solid rgba(227,193,118,0.22);
  border-radius: var(--r-sm);
  padding: 10px 8px;
}
.cd-unit .v { font-size: 1.6rem; line-height: 1; color: var(--gold-bright); }
.cd-unit .l { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #C9AE9C; margin-top: 6px; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--oxblood);
  border-block: 1px solid rgba(227,193,118,0.18);
  overflow: hidden;
  padding: 16px 0;
}
.marquee.gold {
  background: linear-gradient(90deg, #C79A3B, #E3C176, #C79A3B);
  border-color: rgba(58,14,12,0.18);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.marquee.gold .marquee-track span { color: var(--oxblood); }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 11px; }
.marquee.gold .marquee-track span::after { color: var(--oxblood-700); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Sections
   ============================================================ */
section { position: relative; }
.section { padding: 110px 0; }
.section-pad-sm { padding: 84px 0; }

.section-light { background: var(--ivory); }
.section-cream { background: var(--ivory-2); }
.section-dark {
  background:
    radial-gradient(100% 80% at 80% 0%, rgba(110,36,23,0.5) 0%, transparent 55%),
    linear-gradient(160deg, #2C0A08 0%, #3A0E0C 55%, #4A1410 100%);
  color: #EBD8C8;
}
.section-dark h2, .section-dark h3 { color: #FBF1E6; }
.section-dark .lede { color: #D6BFAE; }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; color: var(--cocoa-soft); font-size: 17px; }
.section-dark .section-head p { color: #CBB3A2; }

/* ornamental divider */
.orn {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto 28px;
}
.orn .diamond { width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }
.orn .line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.orn .line.r { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---- Por que: editorial ---- */
.why-body { max-width: 740px; margin: 40px auto 0; text-align: center; }
.why-body p { font-size: 19px; line-height: 1.6; color: var(--cocoa); margin-bottom: 18px; }
.why-symptoms {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 30px auto;
  max-width: 720px;
}
.why-symptoms span {
  font-size: 14px; font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--cream-line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--cocoa);
}
.why-quote {
  margin: 40px auto 0;
  max-width: 820px;
  text-align: center;
  background: linear-gradient(135deg, var(--oxblood) 0%, var(--oxblood-600) 100%);
  color: #F3E4D8;
  border-radius: var(--r-lg);
  padding: 44px 48px;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--oxblood-500);
}
.why-quote::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(227,193,118,0.6), transparent 50%, rgba(227,193,118,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.why-quote .f-serif { font-family: var(--f-serif); font-size: 1.5rem; line-height: 1.42; font-style: italic; }
.why-quote b { color: var(--gold-bright); font-weight: 600; font-style: normal; }

/* ---- Para quem: benefit cards ---- */
.card-grid { display: grid; gap: 22px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

.benefit-card {
  position: relative;
  z-index: 0;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
/* soft gold halo radiating around the card on hover */
.benefit-card::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: calc(var(--r-md) + 7px);
  background: radial-gradient(60% 60% at 50% 0%, rgba(227,193,118,0.55), rgba(199,154,59,0.18) 55%, transparent 78%);
  filter: blur(7px);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
/* crisp gold gradient border that lights up on hover */
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep) 55%, var(--gold-pale));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 26px 60px rgba(58,14,12,0.16), 0 0 0 4px rgba(199,154,59,0.08);
}
.benefit-card:hover::before { opacity: 1; transform: scale(1); }
.benefit-card:hover::after  { opacity: 1; }
.icon-medallion {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-pale), var(--gold) 70%, var(--gold-deep));
  box-shadow: 0 8px 20px rgba(154,110,34,0.28), inset 0 1px 2px rgba(255,255,255,0.5);
  margin-bottom: 20px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.benefit-card:hover .icon-medallion {
  transform: scale(1.07) rotate(-4deg);
  box-shadow: 0 14px 30px rgba(154,110,34,0.42), inset 0 1px 2px rgba(255,255,255,0.6);
}
.icon-medallion svg { width: 26px; height: 26px; color: var(--oxblood); }
/* custom brand icons (assets/icons) rendered via mask so they inherit the
   oxblood tint over the gold medallion, regardless of the source SVG fills */
.icon-medallion .mi {
  width: 30px; height: 30px;
  display: block;
  background: var(--oxblood);
  -webkit-mask: var(--mi) center / contain no-repeat;
          mask: var(--mi) center / contain no-repeat;
  transition: transform var(--dur) var(--ease);
}
.benefit-card:hover .icon-medallion .mi { transform: rotate(4deg); }
.benefit-card h3 { font-family: var(--f-sans); font-weight: 700; font-size: 17px; letter-spacing: 0; color: var(--ink); line-height: 1.35; }

/* ---- Program (dias 04 e 05): numbered diamond cards ---- */
#programa .section-title {
  font-size: clamp(2.25rem, 4.1vw, 4rem);
}

.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.program-item {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 100px;
  padding: 26px 28px;
  border-radius: var(--r-md);
  background: rgba(251,246,236,0.04);
  border: 1px solid rgba(227,193,118,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.program-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: -120%;
  width: 68%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  transition: left 700ms var(--ease), opacity var(--dur) var(--ease);
}
.program-item::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(80% 110% at 12% 50%, rgba(227,193,118,0.18), transparent 62%),
    linear-gradient(135deg, rgba(240,220,167,0.10), rgba(199,154,59,0.02));
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.program-item:hover {
  background: linear-gradient(135deg, #F0DCA7 0%, #E3C176 35%, #C79A3B 70%, #9A6E22 100%);
  border-color: rgba(240,220,167,0.86);
  box-shadow: 0 20px 44px rgba(154,110,34,0.34), inset 0 1px 0 rgba(255,255,255,0.28);
  filter: brightness(1.04);
  transform: translateY(-3px);
}
.program-item:hover::before { left: 160%; opacity: 1; }
.program-item:hover::after { opacity: 1; }
.program-num {
  position: relative;
  z-index: 1;
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
}
.program-num .diamond {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.program-item:hover .program-num .diamond {
  background: linear-gradient(135deg, rgba(58,14,12,0.18), rgba(58,14,12,0.34));
  box-shadow: 0 8px 20px rgba(58,14,12,0.20), inset 0 1px 0 rgba(255,255,255,0.18);
}
.program-num span:last-child {
  position: relative; z-index: 2;
  font-size: 15px;
  color: var(--oxblood);
  transition: color var(--dur) var(--ease);
}
.program-item > div:last-child {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 46px;
  min-width: 0;
}
.program-item h3 { font-family: var(--f-sans); font-weight: 600; font-size: 16.5px; color: #FBF1E6; line-height: 1.4; letter-spacing: 0; text-wrap: pretty; transition: color var(--dur) var(--ease); }
.program-item:hover h3 { color: var(--oxblood); }
.program-item p { font-size: 14px; color: #C9AE9C; margin-top: 6px; }

.program-note {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin: 48px auto 0;
  max-width: 720px;
}

/* ---- VIP Day ---- */
#vip {
  background: var(--ivory);
  scroll-margin-top: 92px;
}

.vip-panel {
  position: relative;
  background:
    radial-gradient(85% 110% at 98% 8%, rgba(227,193,118,0.10), transparent 56%),
    linear-gradient(150deg, #250807 0%, #3A0E0C 54%, #4A1410 100%);
  border-radius: var(--r-lg);
  padding: 58px 60px 54px;
  overflow: hidden;
  border: 1px solid rgba(227,193,118,0.26);
  box-shadow: 0 34px 78px rgba(58,14,12,0.22);
}
.vip-panel::before {
  content: "VIP";
  position: absolute; right: -1%; top: -10%;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(9rem, 16vw, 16rem);
  color: rgba(227,193,118,0.035); pointer-events: none; line-height: 1;
}
.vip-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--oxblood);
  font-weight: 700; font-size: 12px; letter-spacing: 0.17em; text-transform: uppercase;
  line-height: 1;
  padding: 10px 18px; border-radius: var(--r-pill);
  margin-bottom: 22px;
  box-shadow: 0 13px 28px rgba(154,110,34,0.24), inset 0 1px 0 rgba(255,255,255,0.28);
}
.vip-tag .f-num { font-weight: 700; }
.vip-tag svg { width: 15px; height: 15px; flex: none; }
.vip-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr); gap: 56px; align-items: center; position: relative; z-index: 2; }
.vip-left { display: flex; flex-direction: column; min-width: 0; }
.vip-left p {
  max-width: 54ch;
  color: #E1CBBA;
  font-size: 16.5px;
  line-height: 1.72;
}
.vip-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  transform: translateY(34px);
}
.vip-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(227,193,118,0.32);
  aspect-ratio: 16 / 8.7;
  box-shadow: 0 18px 44px rgba(0,0,0,0.30);
}
.vip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 22%; }
.vip-aprofundar {
  padding: 22px;
  border: 1px solid rgba(227,193,118,0.18);
  border-radius: var(--r-md);
  background: rgba(251,246,236,0.045);
}
.vip-aprofundar-title { font-family: var(--f-sans); font-weight: 700; font-size: 12px; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.vip-cta { position: relative; z-index: 2; margin-top: 34px; }
.vip-panel h2 {
  max-width: 17ch;
  color: #FBF1E6;
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  margin-bottom: 20px;
  text-wrap: balance;
}
.vip-panel h2 em { color: var(--gold-bright); font-style: italic; }
.vip-panel > .vip-grid .vip-left > p { color: #E1CBBA; }
.vip-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.vip-topic {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 10px 0;
  font-size: 14.5px;
  color: #F1E2D4;
  font-weight: 500;
  line-height: 1.4;
}
.vip-topic svg { width: 18px; height: 18px; color: var(--gold-bright); flex: none; margin-top: 1px; }
.vip-highlights { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 0; max-width: 520px; }
.vip-hl {
  display: flex; align-items: center; gap: 13px;
  min-height: 54px;
  padding: 14px 18px;
  background: rgba(251,246,236,0.055);
  border: 1px solid rgba(227,193,118,0.22);
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 15px; color: var(--gold-pale);
}
.vip-hl svg { width: 20px; height: 20px; color: var(--gold-bright); flex: none; }

/* ---- About Dra Inês ---- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(199,154,59,0.24);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.about-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 700ms var(--ease), filter var(--dur) var(--ease);
}
.about-photo .frame:hover {
  border-color: rgba(199,154,59,0.72);
  box-shadow: 0 28px 70px rgba(58,14,12,0.18), 0 0 0 5px rgba(199,154,59,0.08);
  transform: translateY(-4px);
}
.about-photo .frame:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.055);
}
.about-photo .corner-mark {
  position: absolute; right: -18px; top: -8px;
  z-index: 2;
  width: 96px; height: auto; opacity: 0.95;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}
.about-stat {
  position: absolute; left: -28px; bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 232px;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(227,193,118,0.16), transparent 60%),
    linear-gradient(145deg, var(--oxblood) 0%, #4A1410 100%);
  color: #F3E4D8;
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: 0 18px 46px rgba(58,14,12,0.36), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(227,193,118,0.26);
}
.about-stat::before {
  content: "";
  width: 1px;
  align-self: stretch;
  order: 2;
  background: linear-gradient(180deg, transparent, rgba(227,193,118,0.45), transparent);
}
.about-stat .n {
  order: 1;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-bright);
}
.about-stat .n .f-num { font-weight: 700; }
.about-stat .t {
  order: 3;
  font-size: 12px;
  line-height: 1.28;
  letter-spacing: 0.04em;
  color: #E3CCB9;
  max-width: 15ch;
}

.about-body h2 { margin: 14px 0 22px; }
.about-body p { margin-bottom: 18px; color: var(--cocoa); }
.about-body p b { color: var(--ink); font-weight: 700; }
.about-body p b .f-num { font-weight: 700; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cred {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  background: var(--gold-wash);
  border: 1px solid var(--gold-pale);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--gold-deep);
}
.cred svg { width: 16px; height: 16px; color: var(--gold-deep); }

/* ---- Event info ---- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
/* gold accent bar that sweeps in from the left edge on hover */
.info-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 24px 54px rgba(58,14,12,0.16);
}
.info-card:hover::before { transform: scaleY(1); }
.info-card .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-wash);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.info-card .ic svg { width: 22px; height: 22px; color: var(--gold-deep); transition: color var(--dur) var(--ease); }
.info-card:hover .ic {
  transform: scale(1.08) rotate(-4deg);
  background: radial-gradient(circle at 35% 30%, var(--gold-pale), var(--gold) 72%, var(--gold-deep));
  box-shadow: 0 10px 22px rgba(154,110,34,0.32), inset 0 1px 2px rgba(255,255,255,0.55);
}
.info-card:hover .ic svg { color: var(--oxblood); }
.info-card .lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.info-card .val { font-family: var(--f-serif); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin-top: 4px; line-height: 1.25; }

/* ---- Pricing ---- */
#investimento { overflow: hidden; }

.pricing-stage {
  position: relative;
  max-width: 940px;
  margin: 56px auto 0;
  padding: 28px 0;
}

.pricing-ribbons {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.pricing-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  overflow: hidden;
  padding: 13px 0;
  border-block: 1px solid rgba(227, 193, 118, 0.2);
  box-shadow: 0 10px 28px rgba(58, 14, 12, 0.1);
  transform-origin: center center;
}

.pricing-ribbon--dark {
  transform: translate(-50%, -50%) rotate(-7deg);
  background: var(--oxblood);
}

.pricing-ribbon--gold {
  transform: translate(-50%, -50%) rotate(7deg);
  background: linear-gradient(90deg, #C79A3B, #E3C176, #C79A3B);
  border-color: rgba(58, 14, 12, 0.14);
}

.pricing-ribbon-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.pricing-ribbon-track.reverse {
  animation-direction: reverse;
  animation-duration: 34s;
}

.pricing-ribbon-track span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.pricing-ribbon--dark .pricing-ribbon-track span { color: var(--gold-bright); }
.pricing-ribbon--dark .pricing-ribbon-track span::after { content: "✦"; color: var(--gold); font-size: 10px; }

.pricing-ribbon--gold .pricing-ribbon-track span { color: var(--oxblood); }
.pricing-ribbon--gold .pricing-ribbon-track span::after { content: "✦"; color: var(--oxblood-700); font-size: 10px; }

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 26px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  padding: 40px 38px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* flowing gold border that animates on hover */
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(115deg, var(--gold-pale), var(--gold-bright) 28%, var(--gold-deep) 50%, var(--gold-bright) 72%, var(--gold-pale));
  background-size: 250% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 84px rgba(58,14,12,0.24);
}
.price-card:hover::before {
  opacity: 1;
  animation: price-border-flow 3s linear infinite;
}
@keyframes price-border-flow {
  to { background-position: 250% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .price-card:hover::before { animation: none; }
}
.price-card.featured {
  background: linear-gradient(160deg, #2C0A08 0%, #3A0E0C 70%, #4A1410 100%);
  border: 1px solid var(--gold);
  color: #EBD8C8;
  box-shadow: 0 40px 90px rgba(58,14,12,0.3);
  transform: translateY(-12px);
}
.price-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 52px 112px rgba(58,14,12,0.42);
}
.price-ribbon {
  position: absolute; top: 0; left: 32px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--oxblood);
  font-weight: 700; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 20px; border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: inline-flex; align-items: center; gap: 8px;
}
.price-ribbon svg { width: 15px; height: 15px; }
.price-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.featured .price-kicker { color: var(--gold-bright); }
.price-name { font-family: var(--f-serif); font-weight: 700; font-size: 1.95rem; line-height: 1.1; margin: 10px 0 7px; color: var(--ink); }
.featured .price-name { color: #FBF1E6; }
.price-dates { font-size: 15.5px; font-weight: 600; color: var(--cocoa-soft); margin-bottom: 24px; }
.featured .price-dates { color: var(--gold-pale); }
.price-divider { height: 1px; background: var(--cream-line); margin: 0 0 24px; }
.featured .price-divider { background: rgba(227,193,118,0.25); }

.price-installment { display: flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.price-installment .x { font-size: 1.05rem; font-weight: 600; color: var(--cocoa); }
.featured .price-installment .x { color: var(--gold-pale); }
.price-installment .amt,
.price-installment .amt .f-num { font-size: 2.95rem; font-weight: 700; line-height: 1; color: var(--ink); letter-spacing: -0.015em; }
.featured .price-installment .amt,
.featured .price-installment .amt .f-num { color: var(--gold-bright); }
.price-installment .cents { font-size: 1.3rem; font-weight: 700; align-self: flex-start; margin-top: 7px; color: var(--ink); }
.featured .price-installment .cents { color: var(--gold-bright); }
.price-cash { font-size: 16px; color: var(--cocoa-soft); margin-top: 10px; }
.price-cash b { color: var(--ink); font-weight: 700; }
.featured .price-cash { color: var(--gold-pale); }
.featured .price-cash b { color: #FBF1E6; }

.price-feats { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; }
.price-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; color: var(--cocoa); }
.featured .price-feats li { color: #E1CDBD; }
.price-feats svg { width: 19px; height: 19px; flex: none; color: var(--gold-deep); margin-top: 1px; }
.featured .price-feats svg { color: var(--gold-bright); }
.price-card .btn { margin-top: auto; }

.price-save {
  display: inline-flex; align-self: flex-start;
  align-items: center; gap: 8px;
  background: rgba(227,193,118,0.16);
  border: 1px solid rgba(227,193,118,0.4);
  color: var(--gold-bright);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.price-save svg { width: 15px; height: 15px; flex: none; }
.pricing-disclaimer { text-align: center; font-size: 14.5px; color: var(--cocoa-soft); margin-top: 34px; }
.pricing-guarantees { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-top: 26px; }
.pricing-guarantees .g { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--cocoa); }
.pricing-guarantees .g svg { width: 20px; height: 20px; color: var(--gold-deep); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-card); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--f-serif); font-weight: 600; font-size: 1.42rem; color: var(--ink);
}
.faq-toggle { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-wash); transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.faq-toggle svg { width: 18px; height: 18px; color: var(--gold-deep); transition: transform var(--dur) var(--ease); }
.faq-item.open .faq-toggle { background: var(--gold); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); color: var(--oxblood); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a-inner { padding: 0 28px 26px; color: var(--cocoa); font-size: 15.5px; line-height: 1.6; }

/* ---- Final CTA ---- */
.final {
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "360°";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--f-display); font-weight: 600; font-size: 38vw;
  color: rgba(227,193,118,0.04); pointer-events: none; line-height: 1; white-space: nowrap;
}
.final-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.final h2 { font-size: clamp(2.2rem, 4.4vw, 3.7rem); color: #FBF1E6; margin-bottom: 24px; line-height: 1.08; }
.final h2 em { font-style: italic; color: var(--gold-bright); }
.final p { font-size: 18px; color: #D6BFAE; margin-bottom: 14px; max-width: 60ch; margin-inline: auto; }
.final .sp { font-family: var(--f-serif); font-style: italic; font-size: 1.5rem; color: var(--gold-bright); margin: 30px 0 36px; }
.final-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ---- Footer ---- */
.site-footer { background: #1A0706; color: #C9AE9C; padding: 64px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(227,193,118,0.14); }
.footer-brand img { height: 84px; width: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; font-size: 14px; color: #A2897A; }
.footer-info { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px; }
.footer-col p, .footer-col a { font-size: 14px; color: #C9AE9C; text-decoration: none; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #8A6F60; }

/* sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  background: rgba(28,15,11,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(227,193,118,0.25);
  padding: 12px 18px;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .s-info { line-height: 1.15; }
.sticky-cta .s-info .a { font-size: 11px; color: #C9AE9C; }
.sticky-cta .s-info .b { font-size: 1.05rem; color: var(--gold-bright); }
.sticky-cta .btn { --b-pad-y: 13px; --b-pad-x: 22px; font-size: 12px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(7px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); will-change: auto; }
/* directional variants (override the base translate via higher specificity) */
.reveal.r-left  { transform: translateX(-46px) translateY(10px); }
.reveal.r-right { transform: translateX(46px) translateY(10px); }
.reveal.r-scale { transform: scale(0.9); filter: blur(9px); }
.reveal.r-left.in,
.reveal.r-right.in,
.reveal.r-scale.in { transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .scroll-progress { display: none; }
  .about-photo .frame,
  .about-photo .frame img { transition: none; }
  .about-photo .frame:hover,
  .about-photo .frame:hover img { transform: none; }
  .program-item,
  .program-item::before,
  .program-item::after { transition: none; }
  .program-item:hover { transform: none; }
  .program-item:hover::before { opacity: 0; }
  .btn-gold::before, .marquee-track, .pricing-ribbon-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .vip-grid { grid-template-columns: 1fr; gap: 32px; }
  .vip-right { padding-top: 0; transform: none; }
  .vip-aprofundar { margin-top: 0; padding: 22px; }
  .vip-photo { aspect-ratio: 16 / 10; flex: none; min-height: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 440px; margin: 0 auto; width: 100%; }
  .program-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .header-date, .brand-word { display: none; }
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .pricing-stage { max-width: 460px; padding: 40px 0; }
  .pricing-ribbon { padding: 11px 0; }
  .pricing-ribbon--dark { transform: translate(-50%, -50%) rotate(-6deg); }
  .pricing-ribbon--gold { transform: translate(-50%, -50%) rotate(6deg); }
  .pricing-ribbon-track span { font-size: 12px; letter-spacing: 0.18em; padding: 0 18px; gap: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .vip-panel { padding: 40px 28px; }
  .vip-tag { letter-spacing: 0.12em; }
  .vip-topics { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .sticky-cta { display: flex; }
  .final { padding: 76px 0 108px; }
  .final-cta .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    --b-pad-x: 22px;
    --b-pad-y: 18px;
    font-size: 13px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .why-quote { padding: 32px 24px; }
  .about-stat { left: 50%; transform: translateX(-50%); }
  .countdown { justify-content: space-between; }
  .cd-unit { min-width: 0; flex: 1; }
  .faq-q { font-size: 1.18rem; padding: 20px; }
}

/* ===== Hero mobile: info centralizada, sem header e sem badge ===== */
@media (max-width: 767px) {
  /* header oculto no mobile (o sticky-cta cobre a conversão ao rolar) */
  .site-header { display: none; }

  .hero-content { text-align: center; }
  .hero-meta { justify-content: center; }
  .hero-statement {
    border-left: none;
    padding: 0;
    text-align: center;
  }
  .hero-sub { margin-inline: auto; }
  .date-pills { justify-content: center; }
  .hero-cta-row { justify-content: center; }

  /* badge "3 Dias de imersão" removido no mobile (conflitava com a section) */
  .hero-figure { display: none; }
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 26px;
  z-index: 1300;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  animation: wa-in 0.5s var(--ease) 1.1s both;
}
.wa-label {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: linear-gradient(135deg, #FDFAF2, #F4E7C9);
  border: 1px solid var(--gold);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 26px rgba(58,14,12,0.22);
  white-space: nowrap;
  /* hidden by default, revealed on hover/focus */
  opacity: 0;
  transform: translateX(12px) scale(0.92);
  transform-origin: right center;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  pointer-events: none;
}
.wa-btn {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #2AD366 0%, #25B257 55%, #128C7E 100%);
  box-shadow: 0 12px 30px rgba(18,140,126,0.45), inset 0 1px 2px rgba(255,255,255,0.35);
  /* gold ring tying it to the brand */
  outline: 2px solid rgba(227,193,118,0.55);
  outline-offset: 3px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-btn svg { width: 34px; height: 34px; fill: #fff; }
/* pulsing halo */
.wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2.4s var(--ease) infinite;
}
.wa-float:hover .wa-btn,
.wa-float:focus-visible .wa-btn { transform: scale(1.07); box-shadow: 0 16px 38px rgba(18,140,126,0.55); }
.wa-float:hover .wa-label,
.wa-float:focus-visible .wa-label { opacity: 1; transform: translateX(0) scale(1); }

@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}
@keyframes wa-in {
  from { opacity: 0; transform: translateY(16px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-btn::before { animation: none; }
  .wa-float { animation: none; }
}
/* clear the mobile sticky CTA bar */
@media (max-width: 860px) {
  .wa-float { right: 16px; bottom: 84px; }
  .wa-btn { width: 54px; height: 54px; }
  .wa-btn svg { width: 30px; height: 30px; }
  .wa-label { display: none; }
}
