@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500;1,6..96,600&family=JetBrains+Mono:wght@400;500;600&display=swap');


/* ============================================
   QUADRO & CENA — Design System
   Noir Cinema Gallery Theme
   ============================================ */
/* ── Tokens ── */
:root {
  /* Colors — Noir + Gold */
  --void: #0A0A0A;
  --deep: #111111;
  --surface: #181818;
  --surface-hover: #1E1E1E;
  --surface-elevated: #222222;
  --border: #2A2A2A;
  --border-light: #333333;

  --gold: #C5A55A;
  --gold-light: #D4AF61;
  --gold-dim: #9E8544;
  --gold-glow: rgba(197, 165, 90, 0.15);
  --gold-shimmer: rgba(197, 165, 90, 0.08);

  --ivory: #F5F0E8;
  --ivory-soft: #E8E2D8;
  --smoke: #8A8A8A;
  --smoke-light: #AAAAAA;
  --cinema-red: #8B2500;
  --cinema-red-soft: rgba(139, 37, 0, 0.15);

  /* Typography */
  /* Bodoni Moda é a "voz editorial" do site — todos os títulos usam.
     Playfair fica como fallback dado em projetos legados. */
  --font-display: 'Bodoni Moda', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --font-editorial: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Georgia', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  /* Scale — 1.333 (perfect fourth) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.333rem;
  --text-2xl: 1.777rem;
  --text-3xl: 2.369rem;
  --text-4xl: 3.157rem;
  --text-5xl: 4.209rem;
  --text-hero: clamp(3rem, 8vw, 6rem);

  /* Spacing — 8pt grid */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 20px rgba(197, 165, 90, 0.15);
  --shadow-frame: 4px 4px 12px rgba(0,0,0,0.8), -2px -2px 8px rgba(0,0,0,0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1280px;
  --promo-height: 33px;
  --header-bar-height: 72px;
  /* Altura total do topo fixo (promo + header). Páginas usam isso pra offset. */
  --header-height: 105px;
}
/* No mobile a promo strip quebra em 2 linhas — aumenta o offset */
@media (max-width: 720px) {
  :root {
    --promo-height: 62px;
    --header-bar-height: 64px;
    --header-height: 126px;
  }
}
/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* clip não quebra position: sticky como hidden quebra */
  width: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ivory);
  background-color: var(--void);
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
a:hover {
  color: var(--gold-light);
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}
/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
/* Utilitário pra "olho" editorial (mono uppercase + dourado) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
/* Itálico dourado pra ênfase nos títulos */
.title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
.text-gold { color: var(--gold); }
.text-accent { font-family: var(--font-accent); }
.text-smoke { color: var(--smoke); }
/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.section {
  padding: var(--space-24) 0;
}
/* ── Button System ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.btn:hover::after {
  opacity: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--void);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
}
.btn-ghost:hover {
  color: var(--gold);
  background: var(--gold-shimmer);
}
.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}
/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}
.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
/* ── Divider ── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-4) 0;
}
.divider-center {
  margin: var(--space-4) auto;
}
/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--smoke);
}
/* ── Selection ── */
::selection {
  background: var(--gold);
  color: var(--void);
}
/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
/* ── Image Protection — diagonal repeating watermark ── */
.art-protected {
  position: relative;
}
.art-protected::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/watermark.svg');
  background-repeat: repeat;
  background-size: 220px 220px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
  mix-blend-mode: normal;
}
/* ── Responsive ── */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-hero: clamp(2rem, 10vw, 3.5rem);
  }

  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-16) 0;
  }
}
.promo-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  background: var(--gold);
  color: var(--void);
  padding: 8px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.promo-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.promo-strip__item {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.promo-strip__bullet {
  opacity: 0.9;
  font-size: 10px;
}

.promo-strip__dot {
  opacity: 0.55;
  font-weight: 600;
}

@media (max-width: 720px) {
  .promo-strip {
    padding: 8px 12px;
    font-size: 10px;
    line-height: 1.3;
  }
  .promo-strip__inner {
    gap: 6px 18px;
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .promo-strip__dot {
    display: none;
  }
}

@media (max-width: 400px) {
  .promo-strip {
    font-size: 9.5px;
  }
  .promo-strip__inner {
    gap: 4px 14px;
  }
}
.header {
  position: fixed;
  top: var(--promo-height);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-bar-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-base) var(--ease-out);
  background: transparent;
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ivory);
}

/* Bloco "Q&C" editorial */
.header__logo-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-editorial);
  line-height: 1;
}

.header__logo-q,
.header__logo-c {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.header__logo-amp {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.header__logo-divider {
  width: 1px;
  height: 26px;
  background: var(--border-light);
}

.header__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-name {
  font-family: var(--font-editorial);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.header__logo-tagline {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--smoke);
  letter-spacing: 0.16em;
  margin-top: 3px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__link {
  color: var(--smoke-light);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-out);
}

.header__link:hover,
.header__link--active {
  color: var(--gold);
}

.header__link--active::after,
.header__link:hover::after {
  width: 100%;
}

.header__cart {
  position: relative;
  background: transparent;
  color: var(--ivory);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.header__cart:hover {
  color: var(--gold);
  background: var(--gold-shimmer);
}

.header__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--void);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.3s var(--ease-out);
}

@keyframes badgePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .header__nav {
    gap: var(--space-3);
  }

  .header__link {
    font-size: var(--text-xs);
  }

  .header__logo-text {
    font-size: var(--text-base);
    letter-spacing: 0.12em;
  }

  .header__cart {
    margin-left: var(--space-3);
  }
}

@media (max-width: 768px) {
  .header__logo-q,
  .header__logo-c {
    font-size: 24px;
  }
  .header__logo-amp {
    font-size: 18px;
  }
  .header__logo-tagline {
    display: none;
  }
}

@media (max-width: 480px) {
  .header__inner {
    gap: var(--space-2);
  }

  .header__logo {
    gap: 10px;
  }

  .header__logo-q,
  .header__logo-c {
    font-size: 20px;
  }

  .header__logo-amp {
    font-size: 16px;
  }

  .header__logo-divider {
    height: 18px;
  }

  .header__logo-name {
    font-size: 12px;
  }

  .header__nav {
    gap: var(--space-2);
  }

  .header__link {
    font-size: 10px;
    letter-spacing: 0.04em;
    padding: 4px 0;
  }

  .header__cart {
    margin-left: var(--space-2);
    padding: 4px;
  }

  .header__cart svg {
    width: 18px;
    height: 18px;
  }
}
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-24);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-4);
  text-decoration: none;
  line-height: 1;
  font-family: var(--font-editorial);
}

.footer__logo-q,
.footer__logo-c {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.footer__logo-amp {
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-editorial);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--ivory-soft);
  margin: 0 0 var(--space-3);
}

.footer__desc {
  font-family: var(--font-editorial);
  font-size: 15px;
  color: var(--smoke-light);
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col a {
  color: var(--smoke);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__contact-label {
  color: var(--smoke);
  font-size: var(--text-sm);
  opacity: 0.6;
}

.footer__legal {
  padding-top: var(--space-6);
  padding-bottom: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: 0.72rem;
  color: var(--smoke);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer__legal-line strong {
  color: var(--ivory-soft);
  font-weight: 600;
}

.footer__bottom {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--smoke);
}

.footer__credit {
  font-style: italic;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__legal {
    text-align: center;
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.cart-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--deep);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
}

.cart-drawer--open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.cart-drawer__close {
  background: transparent;
  color: var(--smoke);
  font-size: var(--text-lg);
  padding: var(--space-2);
  transition: color var(--duration-fast);
}

.cart-drawer__close:hover {
  color: var(--ivory);
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--smoke);
  text-align: center;
  padding: var(--space-8);
}

.cart-drawer__empty-icon {
  font-size: 3rem;
  color: var(--border-light);
  margin-bottom: var(--space-2);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cart-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
}

.cart-item__image {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.cart-item__config {
  font-size: var(--text-xs);
  color: var(--smoke);
  margin-bottom: var(--space-2);
}

.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--void);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.cart-item__qty button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ivory);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
}

.cart-item__qty button:hover {
  background: var(--surface);
  color: var(--gold);
}

.cart-item__qty span {
  font-size: var(--text-sm);
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item__price {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
}

.cart-item__remove {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  background: transparent;
  color: var(--smoke);
  font-size: var(--text-xs);
  padding: 2px;
  opacity: 0;
  transition: all var(--duration-fast);
}

.cart-item:hover .cart-item__remove {
  opacity: 1;
}

.cart-item__remove:hover {
  color: var(--cinema-red);
}

.cart-drawer__footer {
  padding: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-lg);
}

.cart-drawer__total-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
}

.cart-drawer__checkout {
  width: 100%;
}
.mascot {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  pointer-events: auto;
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.5s ease, transform 0.7s var(--ease-out);
}

/* Estado inicial: invisível (mounted antes de entrar) */
.mascot--hidden {
  opacity: 0;
  transform: translate(0, 16px) scale(0.92);
  pointer-events: none;
}

/* Aparecendo no hero — ao lado do título */
.mascot--at-hero {
  transform: translate(-26vw, -38vh);
  transition: opacity 0.6s ease, transform 0.7s var(--ease-out);
}

/* Pulando do hero pro canto */
.mascot--jumping {
  animation: mascotJump 1.05s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes mascotJump {
  0%   { transform: translate(-26vw, -38vh) scale(1); }
  35%  { transform: translate(-13vw, -52vh) scale(0.96); }
  70%  { transform: translate(-3vw, -8vh) scale(1.03); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (max-width: 900px) {
  .mascot--at-hero {
    transform: translate(-12vw, -34vh);
  }
  @keyframes mascotJump {
    0%   { transform: translate(-12vw, -34vh) scale(1); }
    35%  { transform: translate(-6vw, -48vh) scale(0.96); }
    70%  { transform: translate(-2vw, -8vh) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
  }
}

/* ── Avatar (button) ── */
.mascot__avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 2px solid var(--gold);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.55),
    0 0 0 4px rgba(197, 165, 90, 0.10);
  cursor: pointer;
  padding: 0;
  overflow: visible;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  animation: mascotIdle 4s ease-in-out 1.5s infinite;
}

.mascot__avatar:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.65),
    0 0 0 6px rgba(197, 165, 90, 0.18);
}

.mascot__avatar:active {
  transform: scale(0.95);
}

@keyframes mascotIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.mascot__svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

/* SVG bonequinho colors */
.mascot__halo { fill: #131313; }
.mascot__body { fill: #2B2B2B; }
.mascot__lapel { fill: #161616; }
.mascot__bowtie { fill: var(--gold); }
.mascot__head { fill: #E8C9A6; }
.mascot__hair { fill: #1A1A1A; }
.mascot__eye { fill: #1A1A1A; }
.mascot__smile { fill: none; stroke: #1A1A1A; stroke-width: 1.5; stroke-linecap: round; }

/* Pulse ring */
.mascot__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: mascotPulse 2.6s ease-out 2s infinite;
  pointer-events: none;
}

@keyframes mascotPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.45); }
}

/* ── Speech bubble ── */
.mascot__bubble {
  position: relative;
  max-width: 240px;
  padding: var(--space-3) var(--space-8) var(--space-3) var(--space-4);
  background: var(--ivory);
  color: var(--void);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  animation: mascotBubbleIn 0.4s var(--ease-out);
}

.mascot__bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: var(--ivory);
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
}

.mascot__bubble-close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  color: var(--smoke);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--duration-fast);
}

.mascot__bubble-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--void);
}

@keyframes mascotBubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Panel (expanded) ── */
.mascot__panel {
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: var(--space-3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  animation: mascotPanelIn 0.3s var(--ease-out);
}

@keyframes mascotPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mascot__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-2);
}

.mascot__panel-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.mascot__panel-close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--smoke);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.mascot__panel-close:hover {
  background: var(--surface-hover);
  color: var(--ivory);
}

.mascot__option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ivory);
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.mascot__option:hover {
  background: var(--surface-hover);
  transform: translateX(2px);
}

.mascot__option-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(197, 165, 90, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot__option-icon svg {
  width: 18px;
  height: 18px;
}

.mascot__option-icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.mascot__option-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mascot__option-text strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.mascot__option-text small {
  font-size: 0.78rem;
  color: var(--smoke);
  margin-top: 2px;
}

/* Mobile */
@media (max-width: 600px) {
  .mascot {
    bottom: var(--space-4);
    right: var(--space-4);
  }
  .mascot__panel {
    width: calc(100vw - var(--space-8));
    max-width: 320px;
  }
  .mascot__bubble {
    max-width: 200px;
    font-size: 0.88rem;
  }
}
.cookie-banner {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 250;
  background: var(--surface-elevated);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(197, 165, 90, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-5) var(--space-6);
  animation: cookieSlideUp 0.4s var(--ease-out);
  max-width: 880px;
  margin: 0 auto;
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.005em;
}

.cookie-banner__text p {
  font-size: 0.9rem;
  color: var(--smoke-light);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold-dim);
  transition: color var(--duration-fast);
}

.cookie-banner__link:hover {
  color: var(--gold-light);
}

/* ── Actions row ── */
.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.cookie-banner__btn-secondary {
  font-size: var(--text-xs) !important;
  padding: var(--space-2) var(--space-5) !important;
}

/* ── Custom options ── */
.cookie-banner__options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--deep);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid var(--border);
}

.cookie-banner__option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration-fast);
}

.cookie-banner__option:hover {
  background: var(--surface-hover);
}

.cookie-banner__option--locked {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-banner__option input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-banner__option--locked input[type="checkbox"] {
  cursor: not-allowed;
}

.cookie-banner__option > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-banner__option strong {
  font-size: var(--text-sm);
  color: var(--ivory);
  font-weight: 600;
}

.cookie-banner__option span {
  font-size: 0.8rem;
  color: var(--smoke);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .cookie-banner {
    bottom: var(--space-6);
    left: var(--space-6);
    right: var(--space-6);
    padding: var(--space-6) var(--space-8);
  }

  /* Em desktop, layout horizontal só na variante simples (sem custom) */
  .cookie-banner__inner:not(:has(.cookie-banner__options)) {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }

  .cookie-banner__inner:not(:has(.cookie-banner__options)) .cookie-banner__text {
    flex: 1;
  }

  .cookie-banner__inner:not(:has(.cookie-banner__options)) .cookie-banner__actions {
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
    padding: var(--space-4);
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-16);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(197, 165, 90, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(197, 165, 90, 0.04) 0%, transparent 50%),
    var(--void);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--void), transparent);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1500px;
}

/* ── Coluna texto ── */
.hero__copy {
  animation: heroFadeIn 1.2s var(--ease-out) both;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: var(--space-7);
}

.hero__eyebrow-mark {
  font-size: 12px;
}

.hero__eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ivory);
  margin: 0;
}

.hero__title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__subtitle {
  margin-top: var(--space-7);
  margin-bottom: var(--space-10);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--smoke-light);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
}

/* Trust strip */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  max-width: 640px;
}

.hero__trust-item {
  font-family: var(--font-editorial);
}

.hero__trust-icon {
  color: var(--gold);
  font-size: 14px;
  margin-right: 6px;
}

.hero__trust-big {
  font-size: 22px;
  color: var(--ivory);
  font-weight: 500;
}

.hero__trust-small {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--smoke);
  letter-spacing: 0.14em;
  margin-top: 4px;
}

/* ── Coluna showcase (carrossel) ── */
.hero__showcase {
  position: relative;
  height: 620px;
  animation: heroFadeIn 1.4s var(--ease-out) 0.2s both;
}

.hero__showcase-stage {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #251d12 0%, #18130c 60%, var(--void) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hero__showcase-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 220, 160, 0.16) 0%, transparent 55%);
  pointer-events: none;
}

.hero__showcase-wire {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--border-light));
}

.hero__showcase-frame-wrap {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
}

.hero__showcase-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.hero__showcase-frame.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* "Moldura" simulada ao redor do poster: borda preta + passe-partout creme */
.hero__poster-mat {
  width: 100%;
  height: 100%;
  background: #f1e9d3;
  padding: 22px;
  border: 8px solid #0a0a0a;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 6px 14px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.hero__poster-mat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
}

/* Card flutuante "EM DESTAQUE" */
.hero__feature-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px 22px;
  max-width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  color: var(--ivory);
  display: block;
  transition: border-color var(--duration-base) var(--ease-out);
}

.hero__feature-card:hover {
  border-color: var(--gold-dim);
}

.hero__feature-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.24em;
  margin-bottom: 8px;
}

.hero__feature-title {
  font-family: var(--font-editorial);
  font-size: 20px;
  line-height: 1.15;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 4px;
}

.hero__feature-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 13px;
  color: var(--smoke);
}

/* Controles do card: setas + dots */
.hero__feature-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero__nav-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--ivory);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  font-family: var(--font-editorial);
  transition: all var(--duration-fast) var(--ease-out);
}

.hero__nav-btn:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

.hero__feature-dots {
  display: flex;
  flex: 1;
  gap: 4px;
  align-items: center;
}

.hero__feature-dot {
  flex: 1;
  height: 16px;
  min-width: 12px;
  border: 0;
  padding: 7px 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all var(--duration-fast) var(--ease-out);
}

.hero__feature-dot::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--border-light);
  transition: background var(--duration-fast) var(--ease-out);
}

.hero__feature-dot:hover::after {
  background: var(--gold-dim);
}

.hero__feature-dot.is-active::after {
  background: var(--gold);
  height: 3px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .hero__showcase {
    height: 520px;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: calc(var(--header-height) + var(--space-6));
    text-align: center;
  }
  .hero__copy {
    text-align: center;
  }
  .hero__eyebrow {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
  }
  /* No mobile a linha decorativa some pra não sobrepor o título quando o texto quebra */
  .hero__eyebrow-rule {
    display: none;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero__trust {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: var(--space-5) var(--space-8);
    margin: 0 auto;
    max-width: 100%;
    text-align: left;
  }
  .hero__showcase {
    height: 440px;
  }
  .hero__feature-card {
    right: 8px;
    bottom: -10px;
    max-width: 240px;
    padding: 14px 16px;
  }
}

@media (max-width: 400px) {
  .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5) var(--space-4);
    text-align: center;
  }
  .hero__trust-icon {
    display: block;
    margin: 0 auto 4px;
  }
  .hero__trust-big {
    display: block;
  }
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-3);
}

.section-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.section-header__desc {
  font-size: var(--text-lg);
  color: var(--smoke);
  max-width: 500px;
  margin: var(--space-4) auto 0;
}

/* ── EM CARTAZ ESTE MÊS (scroll horizontal) ── */
.month-pick__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.month-pick__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.month-pick__title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin: 0;
}

.month-pick__cta {
  white-space: nowrap;
}

.month-pick__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--space-2);
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-4);
  margin: 0 calc(-1 * var(--space-4));
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.month-pick__scroller::-webkit-scrollbar {
  height: 4px;
}
.month-pick__scroller::-webkit-scrollbar-track {
  background: var(--surface);
}
.month-pick__scroller::-webkit-scrollbar-thumb {
  background: var(--border-light);
}

.month-pick__slot {
  scroll-snap-align: start;
  min-width: 0;
}

@media (max-width: 1100px) {
  .month-pick__scroller {
    grid-auto-columns: 260px;
  }
}

@media (max-width: 720px) {
  .month-pick__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .month-pick__cta {
    width: auto;
  }
  .month-pick__scroller {
    grid-auto-columns: 80%;
    gap: var(--space-4);
  }
}

/* ── MANIFESTO ── */
.manifesto {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--void), var(--deep));
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: flex-start;
}

.manifesto__eyebrow {
  margin-bottom: var(--space-6);
}

.manifesto__title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ivory);
}

.manifesto__right p {
  font-family: var(--font-editorial);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--ivory-soft);
  margin: 0 0 var(--space-5);
}

.manifesto__right p em {
  font-style: italic;
  color: var(--ivory);
}

.manifesto__signoff {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.manifesto__signature {
  font-family: var(--font-editorial);
  font-size: 22px;
}

.manifesto__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: 0.24em;
}

@media (max-width: 900px) {
  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ── SECTION HEAD EDITORIAL (compartilhado) ── */
.section-editorial-head {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-editorial-head .eyebrow {
  margin-bottom: var(--space-4);
}

.section-editorial-title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.step__connector-line {
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--border),
    var(--gold) 30%,
    var(--gold) 70%,
    var(--border)
  );
  opacity: 0.5;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 var(--space-3);
}

.step__number {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  background: var(--void);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step__title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.step__desc {
  margin: 0 auto;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--smoke-light);
}

/* ── CTA FINAL ── */
.cta-final {
  border-top: 1px solid var(--border);
}

.cta-final__inner {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-final__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-shimmer), transparent 70%);
  pointer-events: none;
}

.cta-final__inner .eyebrow {
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-final__title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-4);
  position: relative;
}

.cta-final__desc {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--smoke-light);
  margin-bottom: var(--space-8);
  position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10) var(--space-6);
  }
  .step__connector-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .cta-final__inner {
    padding: var(--space-12) var(--space-5);
  }
}
