/* =========================================================
   Semana da Automação Classe A — Sales Page
   Design System
   ========================================================= */

/* Local fonts — variable woff2 (latin subset) hospedadas no domínio */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/jetbrainsmono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Palette — premium dark with warm gold accent */
  --bg-0: #07070a;
  --bg-1: #0d0d12;
  --bg-2: #14141b;
  --bg-3: #1c1c26;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --fg-0: #f5f3ee;
  --fg-1: #cfc9bd;
  --fg-2: #8d8778;
  --fg-3: #5b5648;

  --gold-0: #f4d58d;
  --gold-1: #d4a24c;
  --gold-2: #a87623;
  --gold-glow: rgba(212, 162, 76, 0.35);

  --accent: #1f8a5b;       /* deep emerald — CTA */
  --accent-hi: #2cb178;
  --danger: #c14b3a;

  /* Typography */
  --font-display: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
  --shadow-cta: 0 1px 0 rgba(255,255,255,0.18) inset, 0 -1px 0 rgba(0,0,0,0.35) inset, 0 24px 40px -20px rgba(31,138,91,0.55);
}

/* Light theme override (toggleable) */
:root[data-theme="light"] {
  --bg-0: #f7f5f0;
  --bg-1: #ffffff;
  --bg-2: #f1ede4;
  --bg-3: #e7e1d3;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);
  --fg-0: #181613;
  --fg-1: #3a352c;
  --fg-2: #6b6557;
  --fg-3: #94907f;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.6) inset, 0 30px 60px -30px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--fg-0);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }
#oferta { scroll-margin-top: 24px; }

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

a { color: inherit; text-decoration: none; }

/* ==================== Layout ==================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--s-9) 0;
  position: relative;
}

.section-tight { padding: var(--s-8) 0; }

/* ==================== Type ==================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-1);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg-0);
  text-wrap: balance;
}

h1 {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  font-weight: 700;
}

h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
}

p { margin: 0; color: var(--fg-1); }

.lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-1);
  max-width: 56ch;
}

.gold { color: var(--gold-0); }
.gold-soft { color: var(--gold-1); }

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-hi) 0%, var(--accent) 100%);
  color: #f0fff8;
  border-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg-0);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-2); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-0) 0%, var(--gold-1) 100%);
  color: #2a1d05;
}

.btn-block { width: 100%; }
.btn-lg { padding: 22px 32px; font-size: 17px; }

/* ==================== Helpers ==================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-1);
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hi);
  box-shadow: 0 0 0 4px rgba(44, 177, 120, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-card);
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--bg-0);
  background-image: url("uploads/fundo-topo-desktop.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
}
@media (max-width: 820px) {
  .hero-bg {
    background-image: url("uploads/fundo-topo-mobile.webp");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
  }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
}

.hero-inner {
  display: block;
  max-width: 600px;
}

@media (max-width: 820px) {
  .hero { padding-top: 250px; }
  .hero-inner { max-width: 100%; }
}

/* Left column: instrutor */
.instructor-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

/* Photo with no hard frame — integrates via fade */
.instructor-stage .instructor-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  z-index: 2;
}

/* Soft orange glow extending beyond photo edges */
.instructor-stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212, 130, 50, 0.22), transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}

/* Edge fade — blends photo bg into hero bg */
.instructor-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 100% 100% at 50% 45%, transparent 50%, rgba(7,7,10,0.55) 95%),
    linear-gradient(180deg, transparent 65%, rgba(7,7,10,0.6) 100%);
  pointer-events: none;
}

/* Square version for About — uses 4:5 portrait to match natural photo ratio */
.instructor-stage.square {
  aspect-ratio: 4 / 5;
  max-width: none;
}
.instructor-stage.square .instructor-img {
  object-fit: cover;
  object-position: center top;
}
.instructor-stage.square::before { display: none; }
.instructor-stage.square::after {
  background:
    linear-gradient(180deg, transparent 70%, rgba(7,7,10,0.4) 100%);
}

/* Caption — sits over the fade */
.instructor-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}
.instructor-caption .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-0);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.instructor-caption .title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-0);
  margin-top: 6px;
}
.instructor-caption .badge {
  background: rgba(7,7,10,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-2);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-0);
  white-space: nowrap;
}

.instructor-frame-corners::before,
.instructor-frame-corners::after,
.instructor-stage > .corner-tl,
.instructor-stage > .corner-br {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold-1);
  z-index: 2;
}
.corner-tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.corner-tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.corner-bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.corner-br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.instructor-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
}
.instructor-meta .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-0);
  letter-spacing: -0.01em;
}
.instructor-meta .title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-0);
  margin-top: 4px;
}
.instructor-meta .badge {
  background: rgba(7,7,10,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-0);
}

/* Right column: copy + offer */

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.benefit-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--fg-1);
}
.benefit-list li svg { flex-shrink: 0; margin-top: 3px; }

@media (max-width: 600px) {
  .benefit-list { grid-template-columns: 1fr; }
}

/* Offer cards */
.offer-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 720px) { .offer-stack { grid-template-columns: 1fr; } }

.offer-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
    var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.offer-card:hover { border-color: var(--gold-2); transform: translateY(-2px); }

.offer-card.featured {
  border-color: var(--gold-1);
  background:
    linear-gradient(180deg, rgba(212,162,76,0.08), transparent 50%),
    var(--bg-1);
}
.offer-card.featured::before {
  content: "MAIS COMPLETO";
  position: absolute;
  top: -8px;
  left: 16px;
  background: linear-gradient(180deg, var(--gold-0), var(--gold-1));
  color: #2a1d05;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 3px;
}

.offer-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.offer-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.offer-card .price-currency {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-1);
  font-weight: 600;
}
.offer-card .price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg-0);
  letter-spacing: -0.035em;
  line-height: 1;
}
.offer-card .price-from {
  text-decoration: line-through;
  color: var(--fg-3);
  font-size: 12px;
  font-family: var(--font-mono);
}
.offer-card .price-suffix {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-2);
  margin-left: 2px;
}
.offer-card .summary {
  font-size: 13px;
  line-height: 1.45;
  color: var(--fg-1);
}
.offer-card .btn {
  padding: 12px 18px;
  font-size: 14px;
  border-radius: var(--r-sm);
}

/* Live banner */
.live-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(193, 75, 58, 0.08);
  border: 1px solid rgba(193, 75, 58, 0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e6a195;
}
.live-banner .dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(193,75,58,0.18); }

/* ==================== Marquee strip ==================== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  padding: 22px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}
.strip-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.strip-item::after {
  content: "✦";
  color: var(--gold-1);
  margin-left: 56px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 820px) {
  .strip { display: none; }
}

/* ==================== Pillars ==================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.pillar:hover { border-color: var(--gold-2); transform: translateY(-3px); }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-1);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(212,162,76,0.18), rgba(212,162,76,0.04));
  border: 1px solid rgba(212,162,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-0);
}
.pillar h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}
.pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar ul li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--fg-1);
  align-items: flex-start;
}
.pillar ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-1);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ==================== Schedule ==================== */
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 880px) { .schedule { grid-template-columns: 1fr; } }

.day {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.day .when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.day .date {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.day .topic {
  font-size: 15px;
  color: var(--fg-1);
}

/* ==================== Aulas (programa) ==================== */
.aulas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 880px) { .aulas { grid-template-columns: 1fr; } }

.aula {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}
.aula:hover { border-color: var(--gold-2); transform: translateY(-3px); }

.aula-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-1);
}
.aula h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.aula-lead {
  font-size: 14.5px;
  color: var(--fg-1);
  line-height: 1.55;
  margin: 0;
}
.aula ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
}
.aula ul li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.5;
  align-items: flex-start;
}
.aula ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-1);
  margin-top: 9px;
  flex-shrink: 0;
}

/* Vagas limitadas — scarcity notice */
.vagas-limitadas {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(193, 75, 58, 0.06);
  border: 1px solid rgba(193, 75, 58, 0.28);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 40px auto 0;
  max-width: 720px;
}
.vagas-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(193, 75, 58, 0.12);
  border: 1px solid rgba(193, 75, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6a195;
  flex-shrink: 0;
}
.vagas-limitadas strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--fg-0);
  display: block;
  margin-bottom: 2px;
}
.vagas-limitadas p {
  font-size: 14px;
  color: var(--fg-1);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .vagas-limitadas { flex-direction: column; text-align: center; padding: 22px 20px; }
}

/* ==================== About instructor ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }

.about-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, #1d1d26 0 14px, #161620 14px 28px);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat .v {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-0);
  line-height: 1;
}
.stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 8px;
}

/* ==================== Bonus ==================== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 720px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.bonus-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-1);
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 48px;
}
.bonus h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 4px;
}
.bonus .val {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ==================== Guarantee ==================== */
.guarantee {
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(212,162,76,0.08), transparent 60%),
    var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) { .guarantee { grid-template-columns: 1fr; padding: 36px 28px; } }

.seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(212,162,76,0.18), rgba(212,162,76,0.05));
  border: 2px solid var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gold-0);
  font-family: var(--font-display);
}
.seal .num {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.seal .word {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==================== FAQ ==================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold-1);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq[open] summary::after { content: "−"; }
.faq .answer {
  padding: 0 26px 22px;
  color: var(--fg-1);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ==================== Final CTA ==================== */
.final-cta {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(212,162,76,0.1), transparent 60%),
    var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 720px) { .final-cta { padding: 48px 24px; } }

.final-cta .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ==================== Footer ==================== */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  margin-top: var(--s-9);
}
footer .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-2);
}
footer a:hover { color: var(--gold-0); }

/* ==================== Section CTA (botão centralizado) ==================== */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .section-cta { margin-top: 32px; }
  .section-cta .btn { width: 100%; max-width: 420px; }
}

/* ==================== Offer Section (replicado do hero, com mais presença) ==================== */
.offer-section-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 56px auto 0;
}
@media (max-width: 720px) {
  .offer-section-stack {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }
}
.offer-section-stack .offer-card {
  padding: 24px 22px 22px;
  gap: 14px;
  border-radius: var(--r-lg);
}
.offer-section-stack .offer-card.featured::before {
  top: -10px;
  left: 22px;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 4px;
}
.offer-section-stack .offer-card .label { font-size: 11px; }
.offer-section-stack .offer-card .price-currency { font-size: 18px; }
.offer-section-stack .offer-card .price { font-size: 52px; }
.offer-section-stack .offer-card .price-from { font-size: 14px; }
.offer-section-stack .offer-card .price-suffix { font-size: 11px; }
.offer-section-stack .offer-card .summary { font-size: 14px; }
.offer-section-stack .offer-card .btn {
  padding: 16px 22px;
  font-size: 15px;
  border-radius: var(--r-md);
}

/* Single-card variant — used when oferta has only one plan */
.offer-section-stack--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}
.offer-section-stack--single .offer-card.featured::before { display: none; }

/* Installments-first price block (oferta) */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-installments {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--fg-0);
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-installments .installments-x {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-0);
}
.price-installments .installments-of {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-2);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.price-installments .installments-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-1);
}
.price-installments .installments-value {
  font-size: 64px;
  font-weight: 700;
  color: var(--fg-0);
  letter-spacing: -0.04em;
}
.price-installments .installments-asterisk {
  font-size: 22px;
  color: var(--gold-1);
  font-weight: 600;
  align-self: flex-start;
  margin-left: -2px;
}
.price-cash {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}
.price-cash strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg-0);
  font-size: 15px;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .price-installments .installments-value { font-size: 52px; }
  .price-installments .installments-x { font-size: 24px; }
}

/* ==================== Section header ==================== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}
.section-head.center {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

/* ==================== Hero — composition ==================== */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Desktop top row: mark + urgency side by side */
.hero-top-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

/* 1. Brand mark — small, identity, not decoration */
.hero-mark {
  width: 88px;
  height: 88px;
  position: relative;
  isolation: isolate;
  flex-shrink: 0;
}
.hero-mark::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle at center, rgba(212, 162, 76, 0.22), transparent 60%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

/* 1b. Event date — prominent, scannable (used in hero and offer) */
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  margin: 0 0 18px;
  background: rgba(212, 162, 76, 0.06);
  border: 1px solid rgba(212, 162, 76, 0.32);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-1);
}
.event-date svg { color: var(--gold-0); flex-shrink: 0; }
.event-date strong { color: var(--fg-0); font-weight: 600; letter-spacing: 0.04em; }
.event-date--center { display: inline-flex; margin: 14px auto 0; }

/* 2. Title — dominant */
.hero-title {
  margin: 0 0 22px;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.034em;
  font-weight: 700;
  text-wrap: balance;
}

/* 3. Lead — restrained, supporting */
.hero-lead {
  margin: 0 0 24px;
  max-width: 50ch;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--fg-1);
}

/* 3b. Hero bullets — desktop only, 3 columns inline */
.hero-bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
  width: 100%;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.4;
}
.hero-bullets svg {
  color: var(--gold-1);
  flex-shrink: 0;
  margin-top: 2px;
}

/* 4. Urgency pill — gold, single line, scarcity trigger */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 24px;
  background: rgba(212, 162, 76, 0.08);
  border: 1px solid rgba(212, 162, 76, 0.28);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-1);
}
.hero-urgency svg { color: var(--gold-0); flex-shrink: 0; }
.hero-urgency-label { color: var(--fg-2); }
.hero-urgency-time {
  color: var(--fg-0);
  font-weight: 600;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.hero-urgency-time .u {
  color: var(--fg-3);
  margin: 0 6px 0 1px;
  font-weight: 400;
}
.hero-urgency-time .u:last-child { margin-right: 0; }

/* Inline duplicate (mobile-only) is hidden on desktop */
.hero-urgency--inline { display: none; }

/* 5. Primary CTA — full column width on desktop */
.hero-btn {
  padding: 18px 28px;
  font-size: 16px;
  margin-bottom: 18px;
  width: 100%;
}
.hero-btn span { display: inline-block; }
.hero-btn svg {
  transition: transform 0.2s ease;
}
.hero-btn:hover svg { transform: translateX(4px); }

/* 6. Payment methods — centered relative to CTA */
.hero-payments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero-payments li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-payments svg { color: var(--fg-2); flex-shrink: 0; }

/* Mobile — preserve original stacked, centered layout */
@media (max-width: 820px) {
  .hero-copy { align-items: center; text-align: center; }
  .hero-title { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; margin-bottom: 32px; }
  .hero-btn { width: 100%; max-width: 380px; }
  .hero-mark { width: 96px; height: 96px; }

  /* Top row collapses to mark only; urgency moves back to inline position */
  .hero-top-row { gap: 0; margin-bottom: 28px; }
  .hero-urgency--top { display: none; }
  .hero-urgency--inline { display: inline-flex; align-self: center; margin-bottom: 24px; }

  /* Bullets stack vertically on mobile, centered */
  .hero-bullets {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bullets li { justify-content: flex-start; }
}

/* ==================== Misc utilities ==================== */
.row-flex { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
