:root {
      --purple: #2d1743;
      --cream:  #f0e6c6;
      --orange: #ff7700;
      --red:    #e63000;
      --dark:   #07040f;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    /* ── NAV ─────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; z-index: 100;
      background: none; border: none;
      transition: transform .35s ease;
    }
    /* na area da pre-venda a nav some pra liberar a tela */
    nav.is-hidden { transform: translateY(-100%); pointer-events: none; }

    .nav-col { display: flex; align-items: center; }
    .nav-col-left  { justify-content: flex-start; }
    .nav-col-right { justify-content: flex-end; }

    /* barra do topo removida: logo e links inline somem, ficam so no menu (overlay) */
    .nav-logo { display: none; }

    .nav-links { display: none; }
    .nav-links a {
      font-family: 'Hanson', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(240,230,198,.65); text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--orange); }

    /* menu hamburguer: 3 tracinhos simples, fixo no canto esquerdo, legivel sobre o video */
    .nav-toggle {
      position: fixed;
      top: calc(14px + env(safe-area-inset-top, 0px));
      left: calc(14px + env(safe-area-inset-left, 0px));
      z-index: 101;
      display: flex; flex-direction: column; justify-content: center; gap: 6px;
      width: 30px; height: 22px; box-sizing: content-box; padding: 10px;
      background: none; border: none; cursor: pointer;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,.7));
    }
    .nav-toggle span {
      display: block; width: 30px; height: 3px;
      background: var(--cream); border-radius: 3px;
      transition: background .2s;
    }
    .nav-toggle:hover span, .nav-toggle:active span { background: var(--orange); }

    #mobileMenu {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(7,4,15,.97);
      flex-direction: column; align-items: center; justify-content: center; gap: 44px;
    }
    #mobileMenu.open { display: flex; }
    #mobileMenu a {
      font-family: 'Hanson', sans-serif; font-size: 26px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--cream); text-decoration: none; transition: color .2s;
      padding: 12px 24px;
    }
    #mobileMenu a:hover, #mobileMenu a:active { color: var(--orange); }
    .mob-close {
      position: absolute; top: 18px; right: 18px;
      width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      font-size: 32px; line-height: 1;
      color: #fff;
      background: rgba(255,119,0,.9);
      border: 2px solid rgba(255,255,255,.15);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(0,0,0,.5);
      transition: transform .15s ease, background .15s ease;
    }
    .mob-close:hover, .mob-close:active {
      transform: scale(1.08);
      background: #ff7700;
    }

    /* ── HERO ────────────────────────────────────── */
    #hero {
      position: relative;
      width: 100%; min-height: 100svh;
      background: var(--dark);
      overflow: hidden;
      display: flex; flex-direction: column;
    }

    /* video FIXO na viewport — efeito parallax (conteúdo sobe por cima) */
    #yt-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: #050008 url('assets/hero-pumpkin.jpg') center/cover no-repeat;
    }
    #yt-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      opacity: 1;
      object-fit: cover;   /* cobre a tela toda em qualquer proporcao, sem margem */
      object-position: center;
    }
    /* esconde botão de play nativo do Safari/iOS nos dois vídeos */
    #yt-bg video::-webkit-media-controls,
    #yt-bg video::-webkit-media-controls-enclosure,
    #yt-bg video::-webkit-media-controls-panel,
    #yt-bg video::-webkit-media-controls-play-button,
    #yt-bg video::-webkit-media-controls-overlay-play-button,
    #yt-bg video::-webkit-media-controls-start-playback-button,
    #yt-bg video::-webkit-media-controls-fullscreen-button {
      display: none !important;
      -webkit-appearance: none !important;
      opacity: 0 !important;
      pointer-events: none !important;
      width: 0 !important;
      height: 0 !important;
    }

    /* top + bottom vignette, center clear */
    #hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(to bottom,
          rgba(7,4,15,.7)  0%,
          rgba(7,4,15,.1) 22%,
          transparent     42%,
          transparent     62%,
          rgba(7,4,15,.15) 78%,
          rgba(7,4,15,.85) 100%);
      pointer-events: none;
    }

    /* left + right side vignette */
    #hero::after {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background:
        linear-gradient(to right,
          rgba(7,4,15,.45) 0%,
          transparent 18%,
          transparent 82%,
          rgba(7,4,15,.45) 100%);
      pointer-events: none;
    }

    .hero-body {
      position: relative; z-index: 3;
      flex: 1;
      display: flex; flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 80px 32px 48px;
      min-height: 100svh;
    }

    /* dois vídeos: mergulho (por cima) some suave revelando a festa (por baixo) */
    #party { z-index: 1; }
    #dive  { z-index: 2; transition: opacity .8s ease; }
    #dive.gone { opacity: 0; pointer-events: none; }

    /* botão de play — só aparece quando o autoplay é bloqueado (Modo de Pouca Energia) */
    #hplay {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      z-index: 50; width: 82px; height: 82px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.28); background: rgba(255,119,0,.95);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 34px rgba(0,0,0,.55), 0 0 44px rgba(255,119,0,.4);
      -webkit-appearance: none; appearance: none;
      animation: hplayPulse 2.2s ease-in-out infinite;
    }
    #hplay[hidden] { display: none; }
    #hplay svg { width: 34px; height: 34px; margin-left: 4px; fill: #1a0a14; }
    @keyframes hplayPulse {
      0%,100% { box-shadow: 0 10px 34px rgba(0,0,0,.55), 0 0 0 0 rgba(255,119,0,.5); }
      50%     { box-shadow: 0 10px 34px rgba(0,0,0,.55), 0 0 0 18px rgba(255,119,0,0); }
    }

    #hero.video-needs-play #party { opacity: .72; }

    @media (max-width: 768px) {
      #hplay {
        position: absolute;
        width: 58px;
        height: 58px;
      }
      #hplay svg { width: 25px; height: 25px; }
    }

    .scroll-hint {
      display: flex; align-items: center; justify-content: center;
      color: rgba(240,230,198,.55);
      text-decoration: none;
      animation: bounce 2.2s ease-in-out infinite;
      pointer-events: all;
      transition: color .2s;
    }
    .scroll-hint:hover { color: var(--orange); }
    @keyframes bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(10px); }
    }

    /* ── GALERIA ─────────────────────────────────── */
    #fotos {
      background: var(--dark);
      position: relative; z-index: 1;
    }

    .section-header {
      text-align: center;
      padding: clamp(70px, 9vw, 100px) 40px clamp(40px, 5vw, 60px);
    }
    .section-label {
      font-family: 'Hanson', sans-serif;
      font-size: 10px; font-weight: 700;
      letter-spacing: .35em; text-transform: uppercase;
      color: var(--orange);
      display: block; margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Hanson', sans-serif;
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 700;
      color: var(--cream);
    }

    /* grade quadrada 2 colunas */
    .gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
    }

    .gallery-item {
      position: relative; overflow: hidden;
      aspect-ratio: 1 / 1;
      cursor: pointer;
      --reveal-delay: 0ms;
    }

    /* foto com leve zoom no hover */
    .g-bg {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transform: scale(1);
      transition: transform .7s ease-out;
    }
    .gallery-item:hover .g-bg { transform: scale(1.05); }

    .g-1 { background: radial-gradient(ellipse at 35% 55%, #6b1020, #0d0208); }
    .g-2 { background: radial-gradient(ellipse at 65% 35%, #3d0c60, #08030f); }
    .g-3 { background: radial-gradient(ellipse at 30% 70%, #7a2800, #0d0400); }
    .g-4 { background: radial-gradient(ellipse at 70% 50%, #1a1070, #040210); }
    .g-5 { background: radial-gradient(ellipse at 55% 30%, #6a1840, #0f0308); }
    .g-6 { background: radial-gradient(ellipse at 40% 60%, #350c66, #06020f); }
    .g-7 { background: radial-gradient(ellipse at 60% 70%, #651400, #0c0200); }

    .g-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(7,4,15,.7) 0%, transparent 50%);
      display: flex; align-items: flex-end; padding: 20px 24px;
      opacity: 0; transition: opacity .3s;
    }
    .gallery-item:hover .g-overlay { opacity: 1; }
    .g-label {
      font-family: 'Hanson', sans-serif; font-size: 10px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--orange);
    }

    /* ── CONTATO ─────────────────────────────────── */
    #contato {
      padding: clamp(80px, 10vw, 120px) 40px;
      background: linear-gradient(180deg, var(--dark) 0%, #160b28 100%);
      position: relative; z-index: 1;
      display: flex; flex-direction: column;
      align-items: center; gap: 48px;
      text-align: center;
    }
    .contato-top {
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
    }
    #contato .c-logo {
      height: 64px;
      filter: drop-shadow(0 0 14px rgba(230,48,0,.35));
    }
    .contato-tagline {
      font-family: 'Hanson', sans-serif;
      font-size: clamp(11px, 1.5vw, 14px);
      font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
      color: rgba(240,230,198,.4);
    }

    .social-row {
      display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    }
    .soc-btn {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 24px;
      border-radius: 8px;
      border: 1px solid rgba(240,230,198,.1);
      background: rgba(255,255,255,.03);
      text-decoration: none;
      font-family: 'Hanson', sans-serif; font-size: 10px; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(240,230,198,.65);
      transition: border-color .2s, color .2s, background .2s, transform .2s;
    }
    .soc-btn:hover {
      border-color: rgba(255,119,0,.5);
      color: var(--orange);
      background: rgba(255,119,0,.06);
      transform: translateY(-2px);
    }
    .soc-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

    /* ── FOOTER ──────────────────────────────────── */
    footer {
      padding: 28px 40px;
      background: #160b28;
      position: relative; z-index: 1;
      border-top: 1px solid rgba(240,230,198,.05);
      text-align: center;
      font-family: 'Hanson', sans-serif; font-size: 10px; letter-spacing: .12em;
      color: rgba(240,230,198,.2);
    }

    /* ── WHATSAPP FLOAT ──────────────────────────── */
    .wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 54px; height: 54px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.45);
      transition: transform .25s, box-shadow .25s;
    }
    .wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
    .wa svg { width: 26px; height: 26px; fill: #fff; }

    /* ── REVEAL ──────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .75s ease, transform .75s ease;
    }
    .reveal.on { opacity: 1; transform: none; }

    /* ── PRÉ-VENDA ───────────────────────────────── */
    @font-face {
      font-family: 'Hanson';
      src: url('assets/Hanson-Bold.otf') format('opentype');
      font-weight: 700; font-display: swap;
    }
    .nav-cta {
      color: #fff !important;
      background: var(--orange);
      padding: 9px 18px !important;
      border-radius: 999px;
      box-shadow: 0 6px 20px rgba(255,119,0,.35);
    }
    .nav-cta:hover { color: #1a0a14 !important; background: #ff8a1a; }

    #pre-venda {
      position: relative; z-index: 1;
      min-height: 100vh;
      min-height: 100svh;
      display: flex; align-items: center; justify-content: center;
      padding: clamp(72px, 8vw, 112px) clamp(24px, 6vw, 88px);
      background: #0a0518 url('assets/presale-bg.jpg') center/cover no-repeat;
      overflow: hidden;
    }
    #pre-venda::before {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 42% 52% at 22% 40%, rgba(255,119,0,.11), transparent 72%),
        radial-gradient(ellipse 54% 68% at 22% 45%, rgba(7,4,15,.28), rgba(7,4,15,.88) 96%),
        linear-gradient(90deg, rgba(7,4,15,.93) 0%, rgba(7,4,15,.72) 43%, rgba(7,4,15,.62) 64%, rgba(7,4,15,.88) 100%),
        linear-gradient(to bottom, rgba(7,4,15,.78) 0%, transparent 24%, transparent 58%, rgba(7,4,15,.96) 100%);
    }
    #pre-venda::after {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background:
        linear-gradient(115deg, transparent 18%, rgba(255,119,0,.045) 49%, transparent 70%),
        radial-gradient(circle at 49% 52%, transparent 0 28%, rgba(7,4,15,.22) 58%, rgba(7,4,15,.58) 100%);
      mix-blend-mode: screen;
      opacity: .72;
    }
    .pv-wrap {
      position: relative; z-index: 1;
      width: min(1180px, 100%);
      display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr);
      align-items: center; gap: clamp(42px, 6vw, 92px);
    }
    .pv-intro { min-width: 0; text-align: left; }
    .pv-logo {
      width: clamp(124px, 12vw, 168px); margin: 0 0 24px; display: block;
      filter: drop-shadow(0 10px 34px rgba(255,119,0,.2)) drop-shadow(0 3px 18px rgba(111,38,159,.34));
    }
    .pv-badge {
      display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
      padding: 8px 13px 7px; border-radius: 8px;
      background: linear-gradient(135deg, rgba(255,119,0,.17), rgba(230,48,0,.08));
      border: 1px solid rgba(255,119,0,.52);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 30px rgba(0,0,0,.18);
      font-family: 'Hanson', sans-serif; font-size: 10px;
      letter-spacing: .11em; text-transform: uppercase; color: #ffc080;
    }
    .pv-badge svg { width: 13px; height: 13px; fill: var(--orange); filter: drop-shadow(0 0 8px rgba(255,119,0,.5)); }
    .pv-eyebrow {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Hanson', sans-serif; font-size: clamp(9px, .8vw, 11px);
      letter-spacing: .18em; text-transform: uppercase; color: #d9a9ff; margin-bottom: 17px;
      opacity: .9;
    }
    .pv-eyebrow::before { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, var(--orange), #a75ddc); box-shadow: 0 0 12px rgba(255,119,0,.45); }
    .pv-h {
      font-family: 'Hanson', sans-serif;
      font-size: clamp(58px, 6.4vw, 96px); line-height: .82; letter-spacing: -.052em;
      text-transform: uppercase; color: var(--cream);
      text-wrap: balance;
      -webkit-text-stroke: .6px rgba(7,4,15,.72);
      text-shadow: 0 4px 0 rgba(7,4,15,.48), 0 12px 34px rgba(0,0,0,.78), 0 1px 2px #07040f;
      margin-bottom: 24px;
    }
    .pv-h span { display: block; white-space: nowrap; }
    .pv-h-accent {
      color: var(--orange);
      text-shadow: 0 4px 0 rgba(91,22,0,.72), 0 14px 38px rgba(230,48,0,.3), 0 2px 3px #07040f;
    }
    .pv-sub {
      font-family: 'Inter', sans-serif;
      font-size: clamp(13px, 1.15vw, 15px); line-height: 1.68; color: rgba(240,230,198,.78);
      max-width: 540px; margin: 0 0 28px;
      text-shadow: 0 2px 14px rgba(0,0,0,.9);
    }
    .pv-sub strong { color: #ffd2a6; font-weight: 600; }
    .pv-perks {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px; max-width: 560px; margin: 0;
    }
    .pv-perk {
      min-height: 52px; display: flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, rgba(45,23,67,.58), rgba(7,4,15,.48));
      border: 1px solid rgba(183,103,227,.28); border-radius: 12px; padding: 9px 12px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 12px 30px rgba(0,0,0,.13);
    }
    .pv-perk svg {
      width: 28px; height: 28px; padding: 7px; flex: 0 0 28px;
      fill: var(--orange); border-radius: 8px; background: rgba(255,119,0,.1);
      filter: drop-shadow(0 0 7px rgba(255,119,0,.18));
    }
    .pv-perk span {
      font-family: 'Hanson', sans-serif; font-size: clamp(9px, .76vw, 10.5px);
      line-height: 1.2; letter-spacing: .045em; text-transform: uppercase; color: rgba(240,230,198,.9);
    }
    .pv-card {
      background: rgba(13,7,26,.82);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,119,0,.32); border-radius: 18px;
      padding: 26px 22px; text-align: left;
      box-shadow: 0 24px 60px rgba(0,0,0,.5);
    }
    .pv-fld { margin-bottom: 13px; }
    .pv-fld label {
      display: block; font-size: 10.5px; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(240,230,198,.6); margin-bottom: 6px;
    }
    .pv-card input, .pv-card select {
      width: 100%; height: 47px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(240,230,198,.18);
      border-radius: 10px; padding: 0 14px; color: #fff;
      font-family: 'Inter', sans-serif; font-size: 16px; outline: none;
      transition: border-color .2s, background .2s;
    }
    .pv-card input::placeholder { color: rgba(240,230,198,.55); }
    .pv-card input:focus, .pv-card select:focus { border-color: var(--orange); background: rgba(255,255,255,.09); }
    .pv-card select {
      appearance: none; -webkit-appearance: none; cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7700' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
    }
    .pv-card option { background: #150a26; color: #fff; }
    .pv-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
    .pv-submit {
      width: 100%; height: 53px; margin-top: 8px; border: none; border-radius: 999px;
      background: var(--orange); color: #1a0a14;
      font-family: 'Hanson', sans-serif; font-size: 16px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 9px;
      box-shadow: 0 12px 34px rgba(255,119,0,.42);
      transition: transform .15s, box-shadow .2s, opacity .2s;
    }
    .pv-submit svg { width: 17px; height: 17px; fill: #1a0a14; }
    .pv-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 46px rgba(255,119,0,.58); }
    .pv-submit:active { transform: translateY(0) scale(.99); }
    .pv-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
    .pv-note { text-align: center; font-size: 11px; color: rgba(240,230,198,.6); margin-top: 12px; }
    .pv-msg { text-align: center; font-size: 13px; margin-top: 12px; min-height: 16px; color: rgba(240,230,198,.6); }
    .pv-msg.err { color: #ff8a6b; }
    .pv-success { text-align: center; padding: 18px 6px; animation: fadeUpPv .5s ease both; }
    .pv-success .pv-ic { font-size: 46px; line-height: 1; }
    .pv-success h3 {
      font-family: 'Hanson', sans-serif; font-size: 28px; text-transform: uppercase;
      color: #fff; margin: 12px 0 8px; letter-spacing: .02em; font-weight: 700;
    }
    .pv-success p { font-size: 14px; color: rgba(240,230,198,.72); line-height: 1.6; }
    .pv-success a {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
      color: var(--orange); text-decoration: none;
      font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px;
      letter-spacing: .12em; text-transform: uppercase;
      border: 1px solid rgba(255,119,0,.5); border-radius: 999px; padding: 11px 22px;
      transition: background .2s, color .2s;
    }
    .pv-success a:hover { background: var(--orange); color: #1a0a14; }
    @keyframes fadeUpPv { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
    .pv-done .pv-badge, .pv-done .pv-eyebrow, .pv-done .pv-perks { display: none; }
    .pv-card input:focus-visible, .pv-card select:focus-visible, .pv-submit:focus-visible,
    .nav-cta:focus-visible, .nav-toggle:focus-visible, #mobileMenu a:focus-visible,
    .mob-close:focus-visible, .scroll-hint:focus-visible, .soc-btn:focus-visible,
    .pv-success a:focus-visible {
      outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 6px;
    }

    @media (max-width: 980px) {
      .pv-wrap { display: block; max-width: 660px; }
      .pv-intro { text-align: center; }
      .pv-logo { margin-left: auto; margin-right: auto; }
      .pv-eyebrow { justify-content: center; }
      .pv-eyebrow::after { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, #a75ddc, var(--orange)); }
      .pv-h { font-size: clamp(52px, 9.3vw, 76px); }
      .pv-sub, .pv-perks { margin-left: auto; margin-right: auto; }
      .pv-card { max-width: 560px; margin: 34px auto 0; }
    }

    /* ── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 768px) {
      nav { padding: 0 24px; height: 100px; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .nav-logo img { height: 72px; }
      .hero-body { padding: 96px 24px 72px; }
      #contato { padding: 70px 24px; }
      .section-header { padding: 60px 24px 36px; }
      #pre-venda {
        padding: 22px 16px 30px; align-items: flex-start;
        background-position: 52% center;
      }
      #pre-venda::before {
        background:
          radial-gradient(ellipse 74% 35% at 50% 17%, rgba(255,119,0,.09), transparent 72%),
          linear-gradient(to bottom, rgba(7,4,15,.8) 0%, rgba(7,4,15,.66) 27%, rgba(7,4,15,.87) 61%, rgba(7,4,15,.97) 100%);
      }
      #pre-venda::after { opacity: .38; }
      .pv-wrap { display: block; width: 100%; }
      .pv-intro { text-align: center; }
      .pv-logo { width: clamp(76px, 23vw, 94px); margin: 0 auto 13px; }
      .pv-badge { margin-bottom: 10px; padding: 7px 10px 6px; font-size: 8.8px; }
      .pv-eyebrow { justify-content: center; gap: 7px; font-size: 8.4px; letter-spacing: .13em; margin-bottom: 11px; }
      .pv-eyebrow::before { width: 20px; }
      .pv-eyebrow::after { content: ''; width: 20px; height: 1px; background: linear-gradient(90deg, #a75ddc, var(--orange)); }
      .pv-h {
        font-size: clamp(39px, 12.2vw, 55px); line-height: .83; letter-spacing: -.052em;
        margin-bottom: 15px; -webkit-text-stroke-width: .4px;
      }
      .pv-sub { font-size: 12.5px; line-height: 1.55; max-width: 360px; margin: 0 auto 17px; }
      .pv-perks { gap: 7px; max-width: 430px; margin: 0 auto 16px; }
      .pv-perk { min-height: 44px; gap: 7px; padding: 7px 8px; border-radius: 10px; text-align: left; }
      .pv-perk svg { width: 25px; height: 25px; padding: 6px; flex-basis: 25px; border-radius: 7px; }
      .pv-perk span { font-size: clamp(7.5px, 2.45vw, 9px); letter-spacing: .025em; }
      .pv-card { padding: 15px; }
      .pv-fld { margin-bottom: 9px; }
      .pv-card input, .pv-card select { height: 44px; }
      .pv-submit { height: 50px; margin-top: 4px; }
    }
