/* ============================================================
   Imersão Mulher 1% — Design System
   Brand: dark wine + gold luxury feminine
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Italiana&display=swap');

:root {
  /* Brand palette */
  --wine-bg:       #1A0508;
  --wine-deep:     #0E0205;
  --wine-2:        #2A0A12;
  --wine-3:        #3A0E18;
  --wine-glow:     #4A1220;
  --gold:          #C9A84C;
  --gold-bright:   #D4B563;
  --gold-light:    #E8CC80;
  --gold-deep:     #8C7330;
  --gold-shadow:   #5A4A1F;
  --cream:         #F5ECD7;
  --cream-dim:     rgba(245,236,215,0.72);
  --cream-faint:   rgba(245,236,215,0.5);
  --line:          rgba(201,168,76,0.28);
  --line-strong:   rgba(201,168,76,0.55);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-script:  'Italiana', 'Cormorant Garamond', serif;

  /* Active accent (toggleable via tweaks) */
  --accent:       var(--gold);
  --accent-soft:  var(--gold-light);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--wine-bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ============================================================
   App shell — tab picker for the 3 LP variations
   ============================================================ */

.app-shell {
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 30% -10%, #2A0810 0%, #1A0508 55%, #0E0205 100%);
}

.shell-topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(14,2,5,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.shell-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.shell-brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.shell-tabs {
  display: flex; gap: 6px;
  padding: 4px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.shell-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 180ms ease;
}
.shell-tab:hover { color: var(--cream); }
.shell-tab[data-active="true"] {
  color: var(--wine-bg);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}

.shell-stage {
  display: flex;
  justify-content: center;
  padding: 0;
}

/* ============================================================
   Mobile container — 440px max-width centered, like Instagram
   ============================================================ */
.lp-mobile {
  width: 100%;
  max-width: 440px;
  min-height: 100vh;
  background: var(--wine-bg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 720px) {
  .lp-mobile {
    margin: 24px auto 48px;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow:
      0 30px 80px rgba(0,0,0,0.55),
      0 0 0 1px rgba(201,168,76,0.06) inset;
  }
}

/* ============================================================
   Countdown — sticky band at very top of LP
   ============================================================ */
.countdown-band {
  position: sticky; top: 0; z-index: 40;
  background: linear-gradient(180deg, rgba(14,2,5,0.95), rgba(26,5,8,0.92));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
}
.countdown-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.countdown-cells {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display);
  color: var(--cream);
}
.countdown-cells .num {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.countdown-cells .unit {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-weight: 500;
  margin-right: 4px;
}

/* ============================================================
   Reusable atoms
   ============================================================ */

/* Gold ornament divider — line with diamond in middle */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 16px auto;
}
.ornament .bar {
  flex: 0 1 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 6px var(--gold);
}

/* Eyebrow */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* CTA button — primary gold filled */
.cta-primary {
  display: block;
  width: 100%;
  padding: 18px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: #1A0508;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--gold-bright);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset,
    0 14px 30px rgba(201,168,76,0.25),
    0 0 0 1px rgba(201,168,76,0.4);
  transition: transform 160ms ease, box-shadow 200ms ease;
  cursor: pointer;
}
.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset,
    0 18px 36px rgba(201,168,76,0.35),
    0 0 0 1px rgba(201,168,76,0.55);
}
.cta-primary:active { transform: translateY(0); }
.cta-primary .price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

/* CTA secondary — outlined gold */
.cta-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 1px solid var(--gold);
  transition: all 180ms ease;
}
.cta-outline:hover { background: rgba(201,168,76,0.08); }

/* Pill (lot status) */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.pill.active     { background: rgba(201,168,76,0.12); color: var(--gold-light); border: 1px solid var(--gold); }
.pill.sold-out   { background: rgba(255,90,90,0.08); color: #E0796E; border: 1px solid rgba(224,121,110,0.4); text-decoration: line-through; }
.pill.upcoming   { background: rgba(245,236,215,0.05); color: var(--cream-faint); border: 1px solid rgba(245,236,215,0.18); }

/* Section padding */
.section { padding: 56px 24px; position: relative; }
.section + .section { border-top: 1px solid rgba(201,168,76,0.1); }

/* Headline display */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--cream);
  text-wrap: balance;
}
.display .accent {
  color: var(--accent-soft);
  font-style: italic;
}
/* Standalone accent — gold destaque regardless of parent */
.accent {
  color: var(--accent-soft);
}

/* Body lede */
.lede {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
  font-weight: 300;
}

/* Card */
.card {
  background: linear-gradient(180deg, rgba(58,14,24,0.55), rgba(26,5,8,0.55));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(245,236,215,0.04) inset;
}

/* WhatsApp print mock */
.wa {
  background: #0E2723;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-body);
  position: relative;
}
.wa-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.wa-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #8A6E4E, #4E3A26);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 13px; color: #F5ECD7; font-weight: 600;
}
.wa-name {
  font-size: 12px; font-weight: 600;
  color: #B7E4D1;
}
.wa-time {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
}
.wa-bubble {
  background: #1F3934;
  border-radius: 12px;
  border-top-left-radius: 2px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #E8EFEA;
  font-weight: 400;
  position: relative;
}
.wa-bubble + .wa-bubble { margin-top: 6px; }
.wa-bubble.right {
  background: #054640;
  border-top-left-radius: 12px;
  border-top-right-radius: 2px;
  margin-left: 20px;
  color: #E8EFEA;
}
.wa-tick {
  font-size: 10px;
  color: #65BBD0;
  margin-left: 4px;
}

/* Guarantee badge */
.guarantee-badge {
  width: 140px; height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, var(--gold-light), var(--gold) 55%, var(--gold-deep) 100%);
  display: grid; place-items: center;
  text-align: center;
  color: var(--wine-bg);
  position: relative;
  box-shadow:
    0 0 0 4px var(--wine-bg),
    0 0 0 5px var(--gold),
    0 12px 40px rgba(201,168,76,0.35);
  font-family: var(--font-body);
  margin: 0 auto;
}
.guarantee-badge .star-ring {
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(26,5,8,0.5);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.guarantee-badge .gnum {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.guarantee-badge .glabel {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}
.guarantee-badge .gsub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* FAQ item */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: 0; padding: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.faq-q .chev {
  flex: 0 0 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 14px;
  transition: transform 200ms ease;
}
.faq-item[data-open="true"] .chev { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-top: 10px;
  font-weight: 300;
  display: none;
}
.faq-item[data-open="true"] .faq-a { display: block; }

/* Check item (benefits, what you get) */
.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
}
.check-row + .check-row { border-top: 1px dashed var(--line); }
.check-mark {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 700;
  background: rgba(201,168,76,0.05);
}
.check-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 400;
}
.check-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Trust strip below CTA */
.trust-strip {
  font-size: 11px;
  color: var(--cream-faint);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.trust-strip .sep { color: var(--gold); margin: 0 8px; }

/* ============================================================
   Editorial variation — magazine
   ============================================================ */
.editorial .display {
  font-style: italic;
  font-weight: 400;
}
.editorial .pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--cream);
  border-left: 1px solid var(--gold);
  padding: 8px 0 8px 18px;
  margin: 24px 0;
  text-wrap: balance;
}
.editorial .drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.85;
  float: left;
  margin: 6px 10px 0 0;
  color: var(--gold-light);
}
.editorial .folio {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ============================================================
   Raw / Manifesto variation — letter / typewriter
   ============================================================ */
.raw {
  background: #14060A;
}
.raw .section { padding: 40px 22px; }
.raw .typewriter {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream);
  letter-spacing: 0.005em;
  font-weight: 400;
}
.raw .typewriter strong { color: var(--gold-light); font-weight: 700; }
.raw .typewriter em { color: var(--gold); font-style: normal; text-decoration: underline; text-decoration-color: rgba(201,168,76,0.4); text-underline-offset: 4px; }
.raw .strike { text-decoration: line-through; color: var(--cream-faint); }
.raw .signature {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-top: 28px;
  line-height: 1;
}
.raw .display {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--cream);
}
.raw .display .accent { color: var(--gold-light); font-style: normal; }

/* Utility */
.muted { color: var(--cream-dim); }
.gold  { color: var(--gold-light); }
.serif { font-family: var(--font-display); }
.italic { font-style: italic; }
.text-center { text-align: center; }
.flex { display: flex; }
.col  { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }

/* hide social proof when off */
.hidden { display: none !important; }

/* Lot table */
.lot-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(245,236,215,0.02);
}
.lot-row + .lot-row { margin-top: 8px; }
.lot-row[data-state="active"] {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 10px 24px rgba(201,168,76,0.08);
}
.lot-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
}
.lot-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--gold-light);
}
.lot-row[data-state="sold-out"] .lot-name,
.lot-row[data-state="sold-out"] .lot-price { color: var(--cream-faint); text-decoration: line-through; }
.lot-row[data-state="upcoming"] .lot-name,
.lot-row[data-state="upcoming"] .lot-price { color: var(--cream-faint); }

/* Brand logo wordmark */
.logo-mark {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.logo-mark .top {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.logo-mark .main {
  font-family: var(--font-script);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

/* Aurora behind hero */
.aurora {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(201,168,76,0.18), transparent 70%),
    radial-gradient(80% 60% at 80% 30%, rgba(74,18,32,0.6), transparent 70%);
  pointer-events: none;
}

/* ============================================================
   PRICE BLOCK — big offer card with countdown (ref: Cadu Neiva)
   ============================================================ */
.price-block {
  background: linear-gradient(180deg, rgba(58,14,24,0.85), rgba(14,2,5,0.95));
  border: 1px solid var(--gold);
  border-radius: 22px;
  padding: 26px 22px 22px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.18),
    0 30px 60px rgba(0,0,0,0.55),
    0 0 60px rgba(201,168,76,0.08);
}
.price-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--wine-bg);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.price-investment {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 18px;
  font-weight: 600;
}
.price-old {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream-faint);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  margin-top: 6px;
  display: inline-block;
  font-weight: 500;
}
.price-old::before { content: "De "; opacity: 0.7; }
.price-new {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
  font-family: var(--font-display);
  color: var(--gold-light);
  line-height: 1;
}
.price-new .currency {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}
.price-new .amount {
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.price-sub {
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 6px;
  font-weight: 400;
}
.price-bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.price-bullets .b {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.4;
}
.price-bullets .b::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 11px;
  color: var(--cream-faint);
  font-weight: 400;
}
.trust-row span { white-space: nowrap; }
.trust-row span::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
}

/* 24h lot countdown */
.lot-countdown {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  text-align: center;
}
.lot-countdown-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.lot-countdown-cells {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.lot-countdown-cells .cell {
  background: rgba(14,2,5,0.6);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) inset;
}
.lot-countdown-cells .cell .n {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lot-countdown-cells .cell .u {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 4px;
  font-weight: 600;
}
.lot-countdown-note {
  font-size: 11px;
  color: var(--cream-faint);
  margin-top: 10px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================================
   VAGAS PROGRESS — 87% sold bar
   ============================================================ */
.vagas-progress {
  margin-top: 18px;
}
.vagas-progress-bar {
  height: 10px;
  background: rgba(14,2,5,0.6);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.vagas-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  border-radius: 999px;
  position: relative;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  animation: shimmer 2.8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.vagas-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.vagas-progress-warn {
  color: #FF8A6E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

/* ============================================================
   LOT CARDS v2 — active lot bigger + hover
   ============================================================ */
.lot-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(14,2,5,0.4);
  border: 1px solid var(--line);
  transition: all 220ms cubic-bezier(0.22,1,0.36,1);
  cursor: default;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.lot-card + .lot-card { margin-top: 8px; }
.lot-card-state {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream-faint);
}
.lot-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  margin-top: 2px;
  font-weight: 500;
}
.lot-card-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  font-weight: 600;
}

/* Sold out — collapsed, struck */
.lot-card[data-state="sold-out"] {
  opacity: 0.55;
  border-style: dashed;
}
.lot-card[data-state="sold-out"] .lot-card-name,
.lot-card[data-state="sold-out"] .lot-card-price { text-decoration: line-through; color: var(--cream-faint); }

/* Active — bigger, prominent */
.lot-card[data-state="active"] {
  padding: 22px 22px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(74,18,32,0.5) 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 1px var(--gold) inset,
    0 12px 40px rgba(201,168,76,0.2),
    0 0 60px rgba(201,168,76,0.08);
  transform: scale(1.02);
}
.lot-card[data-state="active"]::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  background-size: 200% 100%;
  animation: lot-shine 3s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}
@keyframes lot-shine {
  to { background-position: -200% 0; }
}
.lot-card[data-state="active"] .lot-card-state {
  color: var(--gold-light);
}
.lot-card[data-state="active"] .lot-card-name {
  font-size: 20px;
  color: var(--cream);
  font-weight: 600;
}
.lot-card[data-state="active"] .lot-card-price {
  font-size: 32px;
  color: var(--gold-light);
}
.lot-card[data-state="active"]:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow:
    0 0 0 1px var(--gold) inset,
    0 18px 56px rgba(201,168,76,0.35),
    0 0 80px rgba(201,168,76,0.18);
}

/* Upcoming */
.lot-card[data-state="upcoming"] {
  background: rgba(245,236,215,0.02);
}
.lot-card[data-state="upcoming"] .lot-card-name,
.lot-card[data-state="upcoming"] .lot-card-price { color: var(--cream-faint); }

/* ============================================================
   SECTION CTA — inline CTA at end of long blocks
   ============================================================ */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 22px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(74,18,32,0.4));
  border: 1px solid var(--line);
}
.section-cta-hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.35;
  text-wrap: balance;
}
.section-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--wine-bg);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--gold-bright);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 8px 22px rgba(201,168,76,0.25);
  transition: transform 160ms ease;
  cursor: pointer;
}
.section-cta-btn:hover { transform: translateY(-1px); }
.section-cta-btn .arrow { font-size: 14px; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.fl-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  box-shadow:
    0 8px 24px rgba(18,140,126,0.45),
    0 0 0 4px rgba(37,211,102,0.18);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1);
  animation: pulse-wa 2.6s ease-in-out infinite;
}
.fl-wa:hover { transform: scale(1.1); animation: none; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(18,140,126,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 8px 24px rgba(18,140,126,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
.fl-wa svg { width: 28px; height: 28px; }
.fl-wa-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wine-deep);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.fl-wa:hover .fl-wa-tip { opacity: 1; }

/* IG link */
.ig-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  font-weight: 500;
}
.ig-link:hover { color: var(--cream); }

/* New guarantee image */
.guarantee-img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(201,168,76,0.35)) drop-shadow(0 0 30px rgba(201,168,76,0.18));
}

/* image masks */
.nath-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  filter: contrast(1.02) saturate(0.95);
}
.nath-portrait.full {
  width: 100%; aspect-ratio: auto; border-radius: 0;
}
