/* =========================================================
   NECHIO RUN 2026 — Sponsorship Landing
   DesignMAX • Roxo profundo + Verde limão + Creme
   ========================================================= */

:root {
  /* Cores — Brand oficial Nechio */
  --bg-deep: #4A0024;       /* roxo ainda mais escuro pra contraste */
  --bg: #670034;            /* PRIMÁRIA brand */
  --bg-elev: #7B0A45;       /* elevation tone */
  --cream: #FFE4C2;         /* SECUNDÁRIA creme */
  --cream-dim: #EBD0AE;
  --lime: #B0CB0A;          /* SECUNDÁRIA lime */
  --lime-glow: #C9E62A;
  --lime-deep: #8FA808;
  --fg: #FFE4C2;
  --fg-dim: rgba(255, 228, 194, 0.72);
  --fg-muted: rgba(255, 228, 194, 0.48);
  --border: rgba(255, 228, 194, 0.12);
  --border-strong: rgba(255, 228, 194, 0.24);

  /* Tipo — Brand Nechio */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", monospace;

  /* Escala */
  --pad-x: clamp(24px, 6vw, 96px);
  --section-y: clamp(96px, 14vh, 180px);
  --radius: 18px;
  --radius-lg: 28px;

  /* Easing — DesignMAX */
  --ease-power3: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-power4: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--lime); color: var(--bg-deep); }

html {
  scroll-behavior: auto; /* Lenis cuida */
  overflow-x: hidden;
}

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ─────────────── Grain overlay ─────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─────────────── Cursor custom ─────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--lime-glow);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--lime-glow);
  transition: width 0.35s var(--ease-power3), height 0.35s var(--ease-power3),
              background 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(184, 212, 50, 0.18); }
.cursor-ring.text  { width: 14px; height: 14px; background: var(--lime-glow); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─────────────── Scrollbar ─────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--lime-deep); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease-power3), border-color 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(74, 14, 48, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--border);
  padding: 14px var(--pad-x);
}
.nav.hidden { transform: translateY(-105%); }
/* ============================================================
   NAVBAR — Logo 3D
   ============================================================ */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.018em;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo .logo-3d-slot {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 6px 14px rgba(176, 203, 10, 0.4));
}
.nav-logo .logo-3d-slot svg { width: 100%; height: 100%; }
.nav-logo em { font-style: normal; color: var(--lime); }
.nav-logo .brand-wordmark { letter-spacing: -0.012em; }
.nav-logo .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
  display: inline-block;
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--fg-dim);
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 1.5px; background: var(--lime);
  transition: right 0.5s var(--ease-power3);
}
.nav-links a:hover { color: var(--lime); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--bg-deep);
  white-space: nowrap;
  transition: transform 0.4s var(--ease-back), box-shadow 0.3s;
}
.nav-cta:hover { box-shadow: 0 8px 28px rgba(184, 212, 50, 0.4); }

/* ---------- Menu mobile (hambúrguer) ---------- */
.nav-burger { display: none; }
.nav-links .nav-links-cta { display: none; }
.nav-backdrop { display: none; }

@media (max-width: 880px) {
  /* CTA da topbar migra pra dentro do painel */
  .nav > .nav-cta { display: none; }

  .nav-logo { position: relative; z-index: 122; }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    border-radius: 13px;
    background: rgba(255, 228, 194, 0.06);
    border: 1px solid var(--border-strong);
    flex-shrink: 0;
    position: relative;
    z-index: 122;
  }
  .nav-burger span {
    display: block;
    width: 22px; height: 2px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-power3), opacity 0.2s;
  }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mantém a nav visível quando o menu está aberto */
  .nav.menu-open { transform: none !important; background: rgba(74, 14, 48, 0.92); }

  /* Backdrop */
  .nav-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(20, 2, 12, 0.55);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 108;
  }
  .nav.menu-open ~ .nav-backdrop,
  .nav.menu-open .nav-backdrop { opacity: 1; visibility: visible; }

  /* Painel deslizante */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 104px 30px 40px;
    background: rgba(58, 8, 36, 0.98);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-left: 1px solid var(--border);
    transform: translateX(106%);
    transition: transform 0.5s var(--ease-power4);
    z-index: 112;
    overflow-y: auto;
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  .nav.menu-open .nav-links { transform: translateX(0); }
  .nav-links a {
    width: 100%;
    padding: 17px 2px;
    border-bottom: 1px solid var(--border);
    color: var(--cream);
    font-size: 14px;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a:active { color: var(--lime); }
  .nav-links .nav-cross { border: 1px solid color-mix(in oklab, var(--lime) 55%, transparent); border-radius: 999px; text-align: center; margin-top: 16px; padding: 12px; }
  .nav-links .nav-links-cta {
    display: block;
    margin-top: 20px;
    border-bottom: none;
    background: var(--lime);
    color: var(--bg-deep);
    text-align: center;
    padding: 16px 22px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
  }
}

/* Trava o scroll do body com o menu aberto */
body.nav-locked { overflow: hidden; }
/* Cross-page nav link (page ↔ page) */
.nav-cross {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime) !important;
  padding: 6px 14px;
  border: 1px solid color-mix(in oklab, var(--lime) 55%, transparent);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-cross::after { display: none !important; }
.nav-cross:hover {
  background: var(--lime);
  color: #0b0d07 !important;
  box-shadow: 0 8px 24px rgba(184, 212, 50, 0.35);
}

/* ============================================================
   HERO — PORTAL
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(140px, 18vh, 200px) var(--pad-x) clamp(80px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(184, 212, 50, 0.18), transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(248, 233, 200, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 60%, var(--bg-deep) 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  will-change: transform;
}
.hero-orb.a { width: 520px; height: 520px; top: -120px; left: -120px; background: rgba(184, 212, 50, 0.22); }
.hero-orb.b { width: 420px; height: 420px; bottom: -80px; right: -60px; background: rgba(248, 233, 200, 0.14); }
.hero-orb.c { width: 320px; height: 320px; top: 40%; left: 55%; background: rgba(184, 212, 50, 0.12); }

.hero-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: clamp(28px, 4vh, 44px);
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-kicker .bar { width: 36px; height: 1.5px; background: var(--lime); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 auto;
  max-width: 18ch;
}
.hero-title .row { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero-title .word { display: inline-block; }
.hero-title .accent { color: var(--lime); font-style: italic; font-weight: 600; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 56ch;
  margin: clamp(32px, 5vh, 56px) auto 0;
}

.hero-ctas {
  display: flex; justify-content: center; align-items: center;
  gap: 18px;
  margin-top: clamp(40px, 6vh, 72px);
  flex-wrap: wrap;
}
.btn-primary, .btn-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: transform 0.5s var(--ease-back), box-shadow 0.4s, background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary {
  background: var(--lime);
  color: var(--bg-deep);
  box-shadow: 0 12px 32px rgba(184, 212, 50, 0.28);
}
.btn-primary:hover { background: var(--lime-glow); box-shadow: 0 16px 44px rgba(184, 212, 50, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-primary .arrow, .btn-ghost .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-power3);
}
.btn-primary:hover .arrow, .btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-meta-row {
  position: absolute;
  bottom: clamp(32px, 4vh, 48px);
  left: var(--pad-x); right: var(--pad-x);
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  z-index: 2;
}
.hero-meta-row .scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--lime);
}
.hero-meta-row .scroll-cue .line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--lime), transparent);
  animation: scrollPulse 2.4s var(--ease-power3) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--lime);
  color: var(--bg-deep);
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--lime-deep);
  border-bottom: 1px solid var(--lime-deep);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  animation: marquee 32s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .star {
  width: 22px; height: 22px;
  display: inline-block;
  background: var(--bg-deep);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — Generic
   ============================================================ */
section.block {
  position: relative;
  padding: var(--section-y) var(--pad-x);
  overflow: hidden;
}
.container {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.eyebrow .bar { width: 28px; height: 1.5px; background: var(--lime); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--cream);
  max-width: 22ch;
  margin-bottom: clamp(20px, 3vh, 40px);
}
.section-title .accent { color: var(--lime); font-style: italic; font-weight: 600; }
.section-lede {
  font-size: clamp(17px, 1.3vw, 22px);
  color: var(--fg-dim);
  max-width: 56ch;
  line-height: 1.55;
}

.section-cream { background: var(--cream); color: var(--bg-deep); }
.section-cream .eyebrow { color: var(--bg); }
.section-cream .eyebrow .bar { background: var(--bg); }
.section-cream .section-title { color: var(--bg-deep); }
.section-cream .section-title .accent { color: var(--bg); }
.section-cream .section-lede { color: rgba(74, 14, 48, 0.72); }

/* ============================================================
   OFFER — 3 cards
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 7vh, 80px);
}
@media (max-width: 980px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-power3), border-color 0.4s, background 0.4s;
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  background: #872A5D;
}
.offer-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--lime);
  margin-bottom: 28px;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.offer-card h3 .lime { color: var(--lime); }
.offer-card p {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 38ch;
}
.offer-card .icon {
  position: absolute; top: 32px; right: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease-back);
}
.offer-card:hover .icon { transform: rotate(45deg) scale(1.05); }

/* ============================================================
   ATIVAÇÕES — Split layout
   ============================================================ */
.ativ-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  margin-top: clamp(40px, 6vh, 72px);
}
@media (max-width: 980px) { .ativ-split { grid-template-columns: 1fr; } }
.ativ-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.ativ-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease-power3);
}
.ativ-row:hover { padding-left: 12px; }
.ativ-row .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.18em;
}
.ativ-row .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 30px);
  letter-spacing: -0.015em;
}
.ativ-row .desc {
  font-size: 14px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ativ-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ativ-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184, 212, 50, 0.22), transparent 60%);
  z-index: 2;
}
.ativ-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.8s var(--ease-power3);
}
.ativ-visual:hover img { transform: scale(1.06); }
.ativ-visual .tag {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 3;
  background: var(--lime);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ============================================================
   NUMBERS — Big stat
   ============================================================ */
.stats {
  background: var(--cream);
  color: var(--bg-deep);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(48px, 7vh, 80px);
  border-top: 1px solid rgba(74, 14, 48, 0.18);
}
@media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }
.stat {
  padding: clamp(32px, 4vh, 56px) clamp(16px, 2vw, 32px) clamp(20px, 3vh, 36px) 0;
  border-right: 1px solid rgba(74, 14, 48, 0.18);
}
.stat:last-child { border-right: none; }
.stat .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bg);
  display: flex; align-items: baseline; gap: 4px;
}
.stat .value .suffix { font-size: 0.5em; color: var(--bg-deep); }
.stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 14, 48, 0.7);
  margin-top: 16px;
  max-width: 24ch;
  line-height: 1.5;
}

/* ============================================================
   PRESENÇA — Where brand appears (visual grid)
   ============================================================ */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 6vh, 72px);
}
.presence-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  min-height: 280px;
  transition: transform 0.7s var(--ease-power3), border-color 0.4s;
}
.presence-item:hover { transform: translateY(-6px); border-color: var(--lime); }
.presence-item.a { grid-column: span 7; min-height: 460px; }
.presence-item.b { grid-column: span 5; min-height: 460px; }
.presence-item.c { grid-column: span 4; }
.presence-item.d { grid-column: span 4; }
.presence-item.e { grid-column: span 4; }
.presence-item.wide { grid-column: span 6; min-height: 420px; }
@media (max-width: 980px) {
  .presence-item, .presence-item.a, .presence-item.b, .presence-item.c, .presence-item.d, .presence-item.e, .presence-item.wide {
    grid-column: span 12;
  }
}
.presence-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-power3);
}
.presence-item:hover img { transform: scale(1.05); }
.presence-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(74, 14, 48, 0.85));
  pointer-events: none;
}
.presence-item .caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.presence-item .caption h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 1.7vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
}
.presence-item .caption .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

/* ============================================================
   GALLERY #EUFUI
   ============================================================ */
.gallery-marquee {
  display: flex;
  gap: 20px;
  margin-top: clamp(40px, 6vh, 72px);
  animation: marquee-slow 60s linear infinite;
  width: max-content;
}
.gallery-marquee:hover { animation-play-state: paused; }
@keyframes marquee-slow {
  to { transform: translateX(-50%); }
}
.gallery-photo {
  width: clamp(280px, 22vw, 380px);
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  position: relative;
  flex-shrink: 0;
}
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-power3); }
.gallery-photo:hover img { transform: scale(1.08); }
.gallery-photo .badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--bg-deep);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============================================================
   WHY — Reasons grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 7vh, 80px);
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: clamp(36px, 4vw, 56px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: background 0.5s var(--ease-power3), transform 0.5s, border-color 0.4s;
  position: relative;
}
.why-card:hover { background: var(--lime); color: var(--bg-deep); border-color: var(--lime); transform: translateY(-6px); }
.why-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 0.9;
  transition: color 0.5s;
}
.why-card:hover .num { color: var(--bg-deep); }
.why-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 24px 0 14px;
}
.why-card p {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 42ch;
  transition: color 0.5s;
}
.why-card:hover p { color: rgba(74, 14, 48, 0.78); }

/* ============================================================
   COTAS — Tiers
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 7vh, 80px);
}
@media (max-width: 980px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 3.6vw, 52px);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.6s var(--ease-power3), border-color 0.4s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.tier.gold {
  background: linear-gradient(180deg, #872A5D 0%, var(--bg-elev) 100%);
  border-color: var(--lime);
  box-shadow: 0 24px 64px rgba(184, 212, 50, 0.18);
}
.tier .ribbon {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--bg-deep);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.tier .tier-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 12px;
}
.tier.gold .tier-name { color: var(--lime); }
.tier .tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 6px;
}
.tier .tier-price .prefix { font-size: 0.5em; color: var(--fg-muted); }
.tier .tier-tag {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.tier .tier-includes {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.tier ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.tier ul li {
  display: block;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.tier ul li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
}
.tier .tier-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 24px;
  border-radius: 999px;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--cream);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.5s var(--ease-back);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.tier .tier-cta:hover { background: var(--cream); color: var(--bg-deep); border-color: var(--cream); }
.tier.gold .tier-cta { background: var(--lime); color: var(--bg-deep); border-color: var(--lime); }
.tier.gold .tier-cta:hover { background: var(--lime-glow); border-color: var(--lime-glow); box-shadow: 0 12px 32px rgba(184, 212, 50, 0.4); }
.tier .footnote {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 16px;
  text-align: center;
}

.tiers-foot {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
}

/* ============================================================
   HOW IT WORKS — Steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(48px, 7vh, 80px);
  border-top: 1px solid rgba(74, 14, 48, 0.16);
  border-bottom: 1px solid rgba(74, 14, 48, 0.16);
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: clamp(32px, 4vh, 52px) clamp(20px, 2vw, 36px) clamp(32px, 4vh, 52px) 0;
  border-right: 1px solid rgba(74, 14, 48, 0.16);
  position: relative;
}
.step:last-child { border-right: none; }
.step .step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 84px;
  line-height: 0.9;
  color: var(--bg);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--bg-deep);
  margin-bottom: 12px;
  max-width: 16ch;
}
.step p {
  font-size: 15px;
  color: rgba(74, 14, 48, 0.7);
  max-width: 28ch;
  line-height: 1.55;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  position: relative;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184, 212, 50, 0.18), transparent 60%);
  z-index: -1;
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--cream);
  max-width: 18ch;
  margin: 0 auto clamp(28px, 4vh, 44px);
}
.final h2 .accent { color: var(--lime); font-style: italic; font-weight: 600; }
.final p {
  font-size: clamp(18px, 1.4vw, 24px);
  color: var(--fg-dim);
  max-width: 56ch;
  margin: 0 auto clamp(40px, 6vh, 64px);
  line-height: 1.55;
}
.contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 56px auto 0;
}
@media (max-width: 720px) { .contacts { grid-template-columns: 1fr; } }
.contact-card {
  padding: 28px;
  background: rgba(248, 233, 200, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  display: flex; align-items: center; gap: 20px;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease-power3);
}
.contact-card:hover { border-color: var(--lime); background: rgba(184, 212, 50, 0.08); transform: translateY(-4px); }
.contact-card .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card .who {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 4px;
}
.contact-card .phone {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--lime);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #2E0820;
  padding: clamp(72px, 10vh, 120px) var(--pad-x) 32px;
  border-top: 1px solid var(--border);
}
.foot-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a, .foot-grid li {
  font-size: 15px;
  color: var(--fg-dim);
  transition: color 0.3s;
}
.foot-grid a:hover { color: var(--lime); }
.foot-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.foot-brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}
.foot-brand em { font-style: normal; color: var(--lime); }
.foot-tag { font-size: 14px; color: var(--fg-muted); max-width: 40ch; line-height: 1.6; }
.foot-bottom {
  max-width: 1380px;
  margin: 72px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  flex-wrap: wrap; gap: 14px;
}

/* ============================================================
   Reveals — using JS rAF to drive (document.timeline is unreliable
   in some iframe hosts; CSS transitions/animations stall there).
   Elements are visible by default; JS adds .in-view (no-op now,
   but kept for semantic hooks).
   ============================================================ */
/* split-line/inner — structural + nowrap so inline-block doesn't break
   on inner italic spans */
.split-line { display: block; }
.split-line > .split-inner { display: inline-block; white-space: nowrap; }

/* Default state: visible. JS may animate them in via inline styles. */
.reveal, .reveal-x, .section-title, .hero-title,
.hero-kicker, .hero-sub, .hero-ctas > *, .hero-meta-row > *,
[data-stagger] > *, .ativ-row {
  opacity: 1;
}


/* ============================================================
   APPEND v2 — backgrounds vivos, novo stats, OURO em lime
   ============================================================ */

/* ---------- Decorative motifs ---------- */
.motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
section.block { position: relative; }
section.block > .container { position: relative; z-index: 2; }

.motif-circle {
  width: 380px; height: 380px;
  top: 30%; right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(176, 203, 10, 0.32), transparent 70%);
  filter: blur(8px);
  opacity: 0.7;
}
.section-cream .motif-circle,
.stats .motif-circle {
  background: radial-gradient(circle at 30% 30%, rgba(103, 0, 52, 0.16), transparent 70%);
}

.motif-bigN {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(280px, 38vw, 620px);
  line-height: 0.78;
  color: rgba(103, 0, 52, 0.08);
  bottom: -100px; right: -50px;
  letter-spacing: -0.06em;
  user-select: none;
}

.motif-cross {
  width: 280px; height: 280px;
  top: 14%; left: -40px;
  opacity: 0.18;
  color: var(--lime);
  background:
    linear-gradient(currentColor 0 0) center / 100% 2px no-repeat,
    linear-gradient(currentColor 0 0) center / 2px 100% no-repeat;
  transform: rotate(8deg);
}

.motif-dots {
  width: 280px; height: 280px;
  bottom: 8%; right: 4%;
  background-image: radial-gradient(circle, var(--lime) 1.8px, transparent 1.8px);
  background-size: 22px 22px;
  opacity: 0.34;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.motif-star {
  width: 200px; height: 200px;
  background: var(--lime);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.14;
  top: 18%; right: 5%;
  transform: rotate(14deg);
}

/* ---------- HERO additional motifs ---------- */
.hero .motif-dots {
  bottom: 20%; right: 8%;
  opacity: 0.22;
}

/* ---------- NAVBAR LOGO 3D SLOT ---------- */
.nav-logo .logo-3d-slot {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 6px 16px rgba(176, 203, 10, 0.45));
  transition: transform 0.5s var(--ease-back);
}
.nav-logo:hover .logo-3d-slot { transform: rotate(-8deg) scale(1.06); }
.nav-logo .logo-3d-slot svg { width: 100%; height: 100%; display: block; }
.nav-logo .brand-wordmark { letter-spacing: -0.012em; }

/* ---------- STATS — repaginada (override) ---------- */
.stats { overflow: hidden; }
.stats .section-lede strong { color: var(--bg-deep); font-weight: 700; }
.stats-title { color: var(--bg-deep); max-width: 24ch; }
.stats-title .accent-dark { color: var(--bg); font-style: italic; font-weight: 600; }
.stats-title .accent-italic { color: var(--lime-deep); font-style: italic; font-weight: 600; }

.stats-grid { gap: 0 !important; }
.stat .stat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: var(--bg);
  color: var(--lime);
  border-radius: 14px;
  margin-bottom: 22px;
}
.stat .value {
  font-size: clamp(52px, 6.4vw, 104px) !important;
  letter-spacing: -0.04em !important;
}
.stat .value .suffix { font-size: 0.42em !important; font-weight: 600; }

/* ---------- EVENT STATS — A Nechio Run em números ---------- */
.evento-numeros { overflow: hidden; }
.event-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: clamp(48px, 7vh, 80px);
  position: relative; z-index: 2;
}
@media (max-width: 1080px) { .event-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .event-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .event-stats { grid-template-columns: 1fr; } }
.event-stat {
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-power3), border-color 0.4s, background 0.4s;
}
.event-stat:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
}
.event-stat.highlight {
  background: linear-gradient(135deg, rgba(176, 203, 10, 0.20), rgba(176, 203, 10, 0.04));
  border-color: var(--lime);
}
.event-stat .es-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 3.8vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.94;
  color: var(--lime);
  display: inline-flex; align-items: baseline;
  margin-bottom: 18px;
}
.event-stat .es-suffix { font-size: 0.55em; margin-left: 2px; }
.event-stat .es-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.event-stat .es-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------- TIER OURO em LIME (override) ---------- */
.tier.gold {
  background: linear-gradient(180deg, var(--lime) 0%, #C9E62A 100%) !important;
  border-color: var(--lime) !important;
  color: var(--bg-deep) !important;
  box-shadow: 0 24px 64px rgba(176, 203, 10, 0.32), 0 0 0 1px rgba(176, 203, 10, 0.4) !important;
  transform: translateY(-12px);
  position: relative;
  z-index: 2;
  overflow: visible;
}
.tier.gold::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--lime-glow), var(--lime), var(--lime-deep));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
  filter: blur(22px);
}
.tier.gold .ribbon {
  background: var(--bg-deep) !important;
  color: var(--lime) !important;
  font-weight: 700;
}
.tier.gold .tier-name { color: rgba(74, 0, 36, 0.8) !important; }
.tier.gold .tier-price { color: var(--bg-deep) !important; }
.tier.gold .tier-price .prefix { color: rgba(74, 0, 36, 0.5) !important; }
.tier.gold .tier-tag { color: rgba(74, 0, 36, 0.78) !important; }
.tier.gold .tier-includes {
  color: var(--bg-deep) !important;
  border-top-color: rgba(74, 0, 36, 0.2) !important;
}
.tier.gold ul li {
  color: rgba(74, 0, 36, 0.86) !important;
  font-weight: 500;
}
.tier.gold ul li::before { color: var(--bg-deep) !important; }
.tier.gold .tier-cta {
  background: var(--bg-deep) !important;
  color: var(--lime) !important;
  border-color: var(--bg-deep) !important;
}
.tier.gold .tier-cta:hover {
  background: var(--bg) !important;
  border-color: var(--bg) !important;
  color: var(--lime-glow) !important;
  box-shadow: 0 12px 32px rgba(74, 0, 36, 0.36) !important;
}
.tier.gold .footnote {
  color: rgba(74, 0, 36, 0.7) !important;
  font-weight: 600;
}
@media (max-width: 980px) { .tier.gold { transform: none; } }

.tiers { align-items: start; }

/* ---------- Italic accent ---------- */
.accent-italic {
  color: var(--lime);
  font-style: italic;
  font-weight: 600;
}
.section-cream .accent-italic { color: var(--bg); }


/* ============================================================
   APPEND v3 — HERO com foto, evento-split (foto + stats)
   ============================================================ */

/* ---------- HERO com foto de background ---------- */
.hero-with-photo .hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-with-photo .hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.45) contrast(1.15) brightness(0.42);
}
.hero-with-photo .hero-bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 45%, rgba(74, 0, 36, 0.86) 0%, rgba(74, 0, 36, 0.96) 100%),
    linear-gradient(180deg, rgba(74, 0, 36, 0.94) 0%, rgba(74, 0, 36, 0.86) 30%, rgba(74, 0, 36, 0.98) 100%);
  z-index: 1;
}
.hero-with-photo .hero-bg { opacity: 0.35; }

/* ---------- EVENTO SPLIT (foto + stats grid) ---------- */
.evento-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(48px, 7vh, 80px);
  align-items: stretch;
}
@media (max-width: 980px) { .evento-split { grid-template-columns: 1fr; } }

.evento-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  min-height: 540px;
  aspect-ratio: 4/5;
}
.evento-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 2s var(--ease-power3);
}
.evento-photo:hover img { transform: scale(1.04); }
.evento-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 0, 36, 0.75));
  pointer-events: none;
}
.evento-photo-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--bg-deep);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.evento-photo-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bg-deep);
}

/* Override the previous event-stats grid for split layout */
.evento-split .event-stats {
  grid-template-columns: repeat(2, 1fr) !important;
  margin-top: 0 !important;
  gap: 12px;
}
@media (max-width: 980px) {
  .evento-split .event-stats { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .evento-split .event-stats { grid-template-columns: 1fr !important; }
}

/* Last child spans full width to balance the 5-stat layout */
.evento-split .event-stats .event-stat:nth-child(5) {
  grid-column: span 2;
}
@media (max-width: 480px) {
  .evento-split .event-stats .event-stat:nth-child(5) { grid-column: span 1; }
}

/* Adjust event-stat for new split (smaller padding, smaller numbers) */
.evento-split .event-stat {
  padding: clamp(24px, 2.4vw, 32px);
}
.evento-split .es-num {
  font-size: clamp(40px, 3.4vw, 56px) !important;
  margin-bottom: 14px;
}


/* ============================================================
   APPEND v4 — Logo badge + Hero 3 linhas + Efeitos de luz
   ============================================================ */

/* ---------- LOGO BADGE ---------- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  letter-spacing: -0.018em;
}
.nav-logo .logo-mark {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 6px 16px rgba(176, 203, 10, 0.45));
  transition: transform 0.6s var(--ease-back);
  flex-shrink: 0;
}
.nav-logo:hover .logo-mark { transform: rotate(-12deg) scale(1.08); }
.nav-logo .logo-mark svg { width: 100%; height: 100%; display: block; }

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  font-weight: 800;
}
.brand-line1 {
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--lime);
  font-family: var(--font-mono);
}
.brand-line2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}
.brand-line2 .brand-year {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  background: var(--lime);
  color: var(--bg-deep);
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.nav.scrolled .brand-line1 { color: var(--lime); }

/* ---------- HERO TITLE — 3 linhas, serif elegante ---------- */
.hero-title {
  font-family: var(--font-display);
  font-weight: 600 !important;
  font-optical-sizing: auto;
  font-size: clamp(44px, 6.3vw, 118px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.018em !important;
  max-width: 17ch !important;
  /* Shimmer effect — animated gradient on text */
  background: linear-gradient(
    100deg,
    #FFE4C2 0%,
    #FFE4C2 35%,
    #FFFFFF 47%,
    #FFE4C2 60%,
    #FFE4C2 100%
  );
  background-size: 220% 100%;
  background-position: -50% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: titleShimmer 5.5s ease-in-out infinite;
}
.hero-title .accent {
  background: linear-gradient(100deg, #B0CB0A, #D9F258 50%, #B0CB0A);
  background-size: 220% 100%;
  background-position: -50% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 5.5s ease-in-out infinite, accentPulse 3s ease-in-out infinite alternate;
  font-style: italic;
  font-weight: 700;
}
@keyframes titleShimmer {
  0%   { background-position: -50% 0; }
  100% { background-position: 150% 0; }
}
@keyframes accentPulse {
  from { filter: drop-shadow(0 0 18px rgba(176, 203, 10, 0.4)); }
  to   { filter: drop-shadow(0 0 36px rgba(176, 203, 10, 0.85)); }
}

/* ---------- HERO INNER — wider container ---------- */
.hero-inner { max-width: 1640px !important; }

/* ============================================================
   LIGHT EFFECTS — Aurora + Spotlight + Scanline
   ============================================================ */

/* Aurora blobs — animated chromatic gradients */
.aurora {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  mix-blend-mode: screen;
  opacity: 0.7;
  will-change: transform, opacity;
}
.aurora-1 {
  width: 700px; height: 700px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(176, 203, 10, 0.42) 0%, transparent 70%);
  animation: auroraDrift1 18s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 600px; height: 600px;
  top: 35%; right: -180px;
  background: radial-gradient(circle, rgba(255, 100, 200, 0.28) 0%, transparent 70%);
  animation: auroraDrift2 22s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 800px; height: 800px;
  bottom: -240px; left: 20%;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.22) 0%, transparent 70%);
  animation: auroraDrift3 26s ease-in-out infinite alternate;
}
@keyframes auroraDrift1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%  { transform: translate(180px, 80px) scale(1.15); opacity: 0.85; }
  100% { transform: translate(-60px, 200px) scale(0.95); opacity: 0.7; }
}
@keyframes auroraDrift2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%  { transform: translate(-160px, -100px) scale(1.2); opacity: 0.75; }
  100% { transform: translate(80px, 140px) scale(1.05); opacity: 0.6; }
}
@keyframes auroraDrift3 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%  { transform: translate(120px, -80px) scale(1.1); opacity: 0.65; }
  100% { transform: translate(-100px, -160px) scale(0.95); opacity: 0.55; }
}

/* Spotlight — rotating lighthouse beam */
.spotlight {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      transparent 70deg,
      rgba(255, 228, 194, 0.06) 90deg,
      rgba(255, 228, 194, 0.14) 110deg,
      rgba(176, 203, 10, 0.18) 130deg,
      rgba(255, 228, 194, 0.06) 150deg,
      transparent 170deg,
      transparent 360deg
    );
  mix-blend-mode: screen;
  animation: spotlightSpin 22s linear infinite;
  opacity: 0.85;
}
@keyframes spotlightSpin {
  to { transform: rotate(360deg); }
}

/* Scan line — horizontal sweep */
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 203, 10, 0.0) 20%,
    rgba(176, 203, 10, 0.6) 50%,
    rgba(176, 203, 10, 0.0) 80%,
    transparent 100%
  );
  box-shadow: 0 0 24px rgba(176, 203, 10, 0.5);
  pointer-events: none;
  z-index: 1;
  top: 0;
  animation: scanSweep 7s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes scanSweep {
  0%   { top: 10%; opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { top: 95%; opacity: 0; }
}

/* CTA button — pulsing glow */
.btn-primary {
  position: relative;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--lime-glow), var(--lime), var(--lime-deep));
  border-radius: 999px;
  z-index: -1;
  opacity: 0.45;
  filter: blur(14px);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.95); }
  50%      { opacity: 0.7;  transform: scale(1.08); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aurora, .spotlight, .scan-line, .btn-primary::before {
    animation: none !important;
  }
  .hero-title, .hero-title .accent { animation: none !important; }
}


/* ============================================================
   APPEND v5 — Logo Nechio oficial + remoção scan line
   ============================================================ */

/* ---------- LOGO real (PNG) ---------- */
.nav-logo .logo-mark {
  width: 64px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(103, 0, 52, 0.55))
          drop-shadow(0 0 10px rgba(176, 203, 10, 0.25));
  transition: transform 0.6s var(--ease-back);
  flex-shrink: 0;
}
.nav-logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.1);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Hide the wordmark on small screens or simplify — keep brand-wordmark next to badge */
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  font-weight: 800;
}
@media (max-width: 640px) {
  .brand-wordmark { display: none; }
}

/* Footer logo too */
.foot-brand .dot { display: none; }
.foot-brand .logo-img {
  width: 56px;
  height: 42px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 6px 14px rgba(176, 203, 10, 0.3));
}

/* Disable scan line entirely (user disliked it) */
.scan-line { display: none !important; }


/* ============================================================
   SUA MARCA NO KIT — index (patrocinadores)
   ============================================================ */
.marca-kit-bloco { overflow: hidden; }
.marca-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 6vh, 64px);
}
@media (max-width: 760px) { .marca-kit-grid { grid-template-columns: 1fr; } }
.marca-kit-card {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid rgba(74, 0, 36, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.6s var(--ease-power3), box-shadow 0.4s, border-color 0.4s;
}
.marca-kit-card:hover {
  transform: translateY(-6px);
  border-color: var(--bg);
  box-shadow: 0 24px 56px rgba(74, 0, 36, 0.16);
}
.marca-kit-card .mk-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #FFFFFF 0%, #F3EAD9 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.marca-kit-card .mk-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4%;
  transition: transform 1.2s var(--ease-power3);
}
.marca-kit-card:hover .mk-photo img { transform: scale(1.04); }
.marca-kit-card figcaption {
  padding: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(74, 0, 36, 0.1);
}
.marca-kit-card .mk-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bg);
  background: rgba(176, 203, 10, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.marca-kit-card figcaption p {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(74, 0, 36, 0.75);
}


/* ============================================================
   Presence items — light/product images (contain) caption fix
   ============================================================ */
.presence-item.is-light::after {
  background: linear-gradient(180deg, transparent 30%, rgba(74, 0, 36, 0.55) 58%, rgba(74, 0, 36, 0.96) 100%);
}
.presence-item.is-light .caption {
  align-items: flex-end;
}
.presence-item.is-light .caption h4 { color: #fff; text-shadow: 0 1px 8px rgba(74,0,36,0.5); }
.presence-item.is-light .caption .meta { color: var(--lime-glow); text-shadow: 0 1px 8px rgba(74,0,36,0.5); }


/* ============================================================
   IMPACTO DIGITAL — split com mockup Instagram
   ============================================================ */
.digital-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-top: clamp(32px, 4vh, 48px);
}
@media (max-width: 900px) { .digital-split { grid-template-columns: 1fr; gap: 40px; } }
.digital-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.digital-phone::after {
  content: "";
  position: absolute;
  inset: 8% 14%;
  background: radial-gradient(ellipse at center, rgba(176,203,10,0.28), transparent 68%);
  z-index: -1;
  filter: blur(36px);
}
.digital-phone img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(74, 0, 36, 0.32));
}
@media (max-width: 900px) { .digital-phone img { max-width: 320px; } }

.digital-info .stats-title { margin-bottom: 18px; }
.digital-info .section-lede { margin-bottom: clamp(28px, 4vh, 40px); }
.digital-info .section-lede strong { color: var(--bg-deep); font-weight: 700; }

.digital-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(74, 0, 36, 0.18);
  border-left: 1px solid rgba(74, 0, 36, 0.18);
}
@media (max-width: 480px) { .digital-stats { grid-template-columns: 1fr; } }
.dstat {
  padding: clamp(20px, 2.6vw, 30px) clamp(18px, 2vw, 28px);
  border-right: 1px solid rgba(74, 0, 36, 0.18);
  border-bottom: 1px solid rgba(74, 0, 36, 0.18);
}
.dstat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.2vw, 60px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--bg);
  display: flex; align-items: baseline; gap: 3px;
}
.dstat-suffix { font-size: 0.42em; font-weight: 700; color: var(--bg-deep); }
.dstat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(74, 0, 36, 0.66);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 26ch;
}


/* ============================================================
   IMPACTO DIGITAL — ajustes: celular maior + textos compactos
   ============================================================ */
.digital-split {
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 3vw, 48px) !important;
  align-items: center;
}
.digital-phone img { max-width: 440px !important; }
@media (max-width: 900px) { .digital-phone img { max-width: 340px !important; } }

.digital-info .stats-title { margin-bottom: 10px !important; }
.digital-info .section-lede {
  margin-bottom: 14px !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.5 !important;
  max-width: 46ch;
}
/* seção mais compacta + números mais perto do título */
#numeros.block { padding-top: clamp(48px, 6vh, 84px) !important; padding-bottom: clamp(48px, 6vh, 84px) !important; }
.dstat { padding: clamp(16px, 1.8vw, 22px) clamp(16px, 1.6vw, 22px) !important; }
.dstat-value { font-size: clamp(36px, 3.4vw, 50px) !important; }
.dstat-label { margin-top: 9px !important; font-size: 10.5px !important; }


/* ============================================================
   ATIVAÇÕES — flex estica a foto na altura da lista (robusto)
   ============================================================ */
.ativ-split {
  display: flex !important;
  align-items: stretch !important;
}
.ativ-list {
  flex: 1.05 1 0;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.ativ-row {
  padding: clamp(28px, 3.6vh, 44px) 0 !important;
}
.ativ-row:hover { padding-left: 12px !important; }
.ativ-visual {
  flex: 1 1 0;
  aspect-ratio: auto !important;
  position: relative;
  min-height: 0;
}
.ativ-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 980px) {
  .ativ-split { flex-direction: column; }
  .ativ-visual { min-height: 440px; }
}

/* ============================================================
   Mobile polish — altura de viewport dinâmica + tap highlight
   ============================================================ */
@supports (height: 100svh) {
  .hero { min-height: 100svh; }
}
@media (max-width: 880px) {
  a, button { -webkit-tap-highlight-color: rgba(176, 203, 10, 0.18); }
  /* Hero um pouco mais compacto no celular pra caber CTAs sem rolar */
  .hero { padding-top: clamp(110px, 16vh, 150px); }
}

/* ============================================================
   TIPOGRAFIA v6 — Fraunces (serif editorial elegante)
   ============================================================ */
.hero-title, .section-title { font-optical-sizing: auto; }

/* Serif tem ascendentes/acentos altos — não cortar nas linhas do hero */
.hero-title .row,
.hero-title .split-line { overflow: visible; padding-top: 0.08em; }

/* Itálico de destaque mais elegante e com brilho suave */
.hero-title .accent {
  font-style: italic;
  font-weight: 600;
  font-optical-sizing: auto;
  /* O itálico da Fraunces parece menor que o romano — compensa opticamente */
  font-size: 1.08em;
  line-height: 0.9;
}
.section-title .accent,
.section-title .accent-italic,
.hero-title .accent-italic { font-style: italic; }

/* Section titles — ajuste fino pra serif respirar */
.section-title {
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.012em;
}

/* Wordmark da marca na nav — serif fica melhor com leve tracking */
.brand-line2 { letter-spacing: -0.01em; }

/* Botões mantêm presença: peso e tracking ajustados pra serif */
.btn-primary, .btn-ghost,
.nav-cta, .tier-cta, .lote-cta { font-weight: 600; letter-spacing: 0.005em; }

/* ============================================================
   HERO PARCEIROS — foto da medalha em destaque + textos compactos
   ============================================================ */
.hero-parceiros .hero-bg-photo img {
  filter: saturate(1.04) contrast(1.06) brightness(0.86) !important;
  object-position: center 40% !important;
}
.hero-parceiros .hero-bg-photo::after {
  background:
    radial-gradient(ellipse 54% 46% at 50% 47%, rgba(40, 0, 20, 0.5) 0%, rgba(40, 0, 20, 0) 70%),
    linear-gradient(90deg, rgba(74, 0, 36, 0.10) 0%, rgba(74, 0, 36, 0) 34%, rgba(74, 0, 36, 0) 66%, rgba(74, 0, 36, 0.14) 100%),
    linear-gradient(180deg,
      rgba(74, 0, 36, 0.74) 0%,
      rgba(74, 0, 36, 0.22) 32%,
      rgba(74, 0, 36, 0.36) 64%,
      rgba(74, 0, 36, 0.94) 100%) !important;
}
@media (max-width: 760px) {
  .hero-parceiros .hero-bg-photo img { object-position: 26% 36% !important; }
}
.hero-parceiros .hero-bg { opacity: 0.18; }
/* Sombra pra texto ficar legível sobre a foto */
.hero-parceiros .hero-title,
.hero-parceiros .hero-kicker,
.hero-parceiros .hero-sub { text-shadow: 0 2px 28px rgba(30, 0, 16, 0.72); }
/* Textos bem menores e elegantes */
.hero-parceiros .hero-title { font-size: clamp(27px, 3.4vw, 54px) !important; }
.hero-parceiros .hero-sub {
  font-size: clamp(13px, 0.95vw, 15.5px) !important;
  max-width: 46ch;
  margin-top: clamp(16px, 2.4vh, 24px) !important;
}
