/* ProSnowLife — folha única, compartilhada pela home e pelas páginas de destino.
   Gerada a partir dos blocos <style> que viviam no index.html. */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black:      #080b10;
    --deep:       #05070a;
    --white:      #f4f7f9;
    --gray:       #10151c;
    --gray2:      #182029;
    --gray-light: #8794a2;
    --ice:        #9ad9ee;
    --line:       rgba(255,255,255,0.07);
    --line-soft:  rgba(255,255,255,0.045);
    --font:       'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif:      'Instrument Serif', 'Iowan Old Style', Georgia, serif;
    --pad:        64px;
  }

  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    font-family: var(--font);
    font-variation-settings: 'wdth' 100;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  body.locked { overflow: hidden; }

  /* height:auto para o atributo height="800" do HTML não vencer o aspect-ratio do CSS.
     Quem precisa de altura fixa (capas, galeria) define height explicitamente e sobrepõe. */
  img { display: block; max-width: 100%; height: auto; }
  ::selection { background: var(--ice); color: var(--deep); }

  /* ═══════════ PRELOADER / LOGO ANIMADA ═══════════ */
  #preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--deep);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px;
    transition: opacity .7s ease, visibility .7s ease;
  }
  #preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

  .pl-mark { position: relative; width: 168px; height: 168px; }

  .pl-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
  .pl-ring circle {
    fill: none; stroke: var(--ice); stroke-width: 1.2;
    stroke-dasharray: 471; stroke-dashoffset: 471;
    animation: ringDraw 1.5s cubic-bezier(.65,0,.35,1) .15s forwards;
    opacity: .85;
  }
  @keyframes ringDraw { to { stroke-dashoffset: 0; } }

  .pl-ring-2 { position: absolute; inset: -13px; width: calc(100% + 26px); height: calc(100% + 26px); }
  .pl-ring-2 circle {
    fill: none; stroke: rgba(255,255,255,.14); stroke-width: 1;
    stroke-dasharray: 3 9;
    transform-origin: 50% 50%;
    animation: ringSpin 22s linear infinite;
  }
  @keyframes ringSpin { to { transform: rotate(360deg); } }

  .pl-logo {
    position: absolute; inset: 20px;
    width: calc(100% - 40px); height: calc(100% - 40px);
    object-fit: contain;
    opacity: 0;
    animation: logoIn 1.15s cubic-bezier(.16,1,.3,1) .4s forwards;
  }
  @keyframes logoIn {
    0%   { opacity: 0; transform: scale(.62) rotate(-22deg); filter: blur(7px); }
    100% { opacity: 1; transform: scale(1) rotate(0);        filter: blur(0); }
  }

  /* brilho que atravessa a logo, como sol batendo na neve */
  .pl-shine {
    position: absolute; inset: 20px; overflow: hidden; border-radius: 50%;
    -webkit-mask: radial-gradient(circle, #000 99%, transparent 100%);
            mask: radial-gradient(circle, #000 99%, transparent 100%);
  }
  .pl-shine::after {
    content: ''; position: absolute; top: -60%; left: -120%;
    width: 60%; height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    transform: rotate(18deg);
    animation: shine 1.5s cubic-bezier(.4,0,.2,1) 1.15s;
  }
  @keyframes shine { to { left: 160%; } }

  .pl-word {
    font-size: 10px; font-weight: 700;
    letter-spacing: .55em; text-transform: uppercase;
    color: rgba(255,255,255,.42);
    padding-left: .55em;
    opacity: 0;
    animation: fadeUp .9s ease 1.15s forwards;
  }
  .pl-bar { width: 132px; height: 1px; background: rgba(255,255,255,.1); overflow: hidden; }
  .pl-bar i { display: block; height: 100%; width: 0; background: var(--ice); animation: barFill 1.9s cubic-bezier(.5,0,.2,1) .3s forwards; }
  @keyframes barFill { to { width: 100%; } }

  /* ═══════════ NEVE ═══════════ */
  #snow {
    position: fixed; inset: 0; z-index: 3;
    pointer-events: none;
  }

  /* ═══════════ NAV ═══════════ */
  nav#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--pad); height: 74px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, height .35s ease, backdrop-filter .35s ease;
  }
  nav#nav.scrolled {
    height: 62px;
    background: rgba(8,11,16,.86);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom-color: var(--line);
  }

  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 38px; width: auto; transition: height .35s ease; }
  nav#nav.scrolled .nav-logo img { height: 32px; }
  .nav-logo span {
    font-size: 11px; font-weight: 800; letter-spacing: .28em;
    text-transform: uppercase; color: var(--white);
  }
  @media (max-width: 1180px) { .nav-logo span { display: none; } }

  .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
  .nav-links a {
    position: relative;
    color: rgba(255,255,255,.62); text-decoration: none;
    font-size: 11px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    width: 100%; height: 1px; background: var(--ice);
    transform: scaleX(0); transform-origin: right; transition: transform .3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  .nav-cta {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    padding: 11px 22px; border-radius: 2px;
    background: var(--white); color: var(--deep);
    text-decoration: none; border: 1px solid var(--white);
    transition: background .2s, color .2s;
  }
  .nav-cta:hover { background: transparent; color: var(--white); }
  .nav-cta svg { width: 15px; height: 15px; }

  .burger {
    display: none; width: 40px; height: 40px;
    background: none; border: 0; cursor: pointer;
    flex-direction: column; justify-content: center; gap: 6px; padding: 0;
  }
  .burger i { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform .3s, opacity .3s; }
  .burger.open i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.open i:nth-child(2) { opacity: 0; }
  .burger.open i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  #mobile-menu {
    position: fixed; inset: 0; z-index: 190;
    background: rgba(5,7,10,.98);
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  #mobile-menu.open { opacity: 1; visibility: visible; }
  #mobile-menu a {
    color: var(--white); text-decoration: none;
    font-size: 20px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    padding: 13px 20px;
  }
  #mobile-menu a.mm-cta {
    margin-top: 22px; font-size: 12px; letter-spacing: .18em;
    background: var(--ice); color: var(--deep); padding: 16px 34px; border-radius: 2px;
  }

  /* ═══════════ HERO ═══════════ */
  #hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  /* telas baixas (notebook 13", paisagem no telemóvel): encolhe o bloco em vez de cortar */
  @media (max-height: 780px) and (min-width: 861px) {
    .hero-title { font-size: clamp(40px, 5.4vw, 68px); }
    .hero-content { padding-top: 104px; padding-bottom: 64px; }
    .hero-sub { margin-bottom: 26px; font-size: 14px; }
    .hero-tag { margin-bottom: 20px; }
  }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    transform: scale(1.06);
    animation: heroZoom 16s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }

  .hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(to bottom, rgba(5,7,10,.62) 0%, rgba(5,7,10,.14) 34%, rgba(5,7,10,.72) 78%, var(--black) 100%),
      linear-gradient(100deg, rgba(5,7,10,.68) 0%, rgba(5,7,10,.05) 62%);
  }
  /* textura fina de linhas, dá acabamento de filme */
  .hero-veil::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,.022) 0 1px, transparent 1px 3px);
    opacity: .6;
  }

  .hero-content {
    position: relative; z-index: 4;
    padding: 120px var(--pad) 88px;
    max-width: 1000px;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
    color: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(4px);
    padding: 7px 15px; margin-bottom: 30px; border-radius: 1px;
  }
  .hero-tag b { color: var(--ice); font-weight: 700; }

  .hero-title {
    font-size: clamp(46px, 7.4vw, 100px);
    font-weight: 900; line-height: .88;
    font-variation-settings: 'wdth' 112;
    text-transform: uppercase; letter-spacing: -.025em;
    margin-bottom: 30px;
    text-shadow: 0 4px 40px rgba(0,0,0,.35);
  }
  .hero-title em {
    display: block;
    font-family: var(--serif);
    font-size: .68em; line-height: .98;
    font-style: italic; font-weight: 400;
    font-variation-settings: normal;
    color: rgba(255,255,255,.72);
    text-transform: none; letter-spacing: -.01em;
    margin-top: .1em;
  }

  .hero-sub {
    font-size: 15px; font-weight: 400;
    color: rgba(255,255,255,.68);
    letter-spacing: .04em; line-height: 1.75;
    max-width: 520px; margin-bottom: 38px;
  }

  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

  .hero-note {
    font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
    color: rgba(255,255,255,.42);
  }
  .hero-note b { color: rgba(255,255,255,.7); font-weight: 700; }

  .hero-scroll {
    position: absolute; bottom: 34px; right: var(--pad); z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,.5);
    font-size: 9px; letter-spacing: .25em; text-transform: uppercase; font-weight: 700;
  }
  .hero-scroll .line { width: 1px; height: 54px; background: rgba(255,255,255,.16); position: relative; overflow: hidden; }
  .hero-scroll .line::after {
    content: ''; position: absolute; left: 0; top: -60%; width: 100%; height: 60%;
    background: var(--ice); animation: scrollDrop 2.2s cubic-bezier(.7,0,.3,1) infinite;
  }
  @keyframes scrollDrop { to { top: 100%; } }
  @media (max-width: 900px) { .hero-scroll { display: none; } }

  /* ═══════════ BOTÕES ═══════════ */
  .btn-primary, .btn-secondary, .btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font); font-size: 12px; font-weight: 700;
    letter-spacing: .17em; text-transform: uppercase;
    padding: 16px 34px; border-radius: 2px;
    text-decoration: none; cursor: pointer;
    transition: background .22s, color .22s, border-color .22s, transform .22s;
  }
  .btn-primary  { background: var(--white); color: var(--deep); border: 2px solid var(--white); }
  .btn-primary:hover { background: transparent; color: var(--white); }
  .btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.28); }
  .btn-secondary:hover { border-color: var(--white); }
  .btn-wa { background: #25D366; color: #04140a; border: 2px solid #25D366; }
  .btn-wa:hover { background: transparent; color: #25D366; }
  .btn-primary svg, .btn-secondary svg, .btn-wa svg { width: 17px; height: 17px; }

  /* ═══════════ MARQUEE ═══════════ */
  .marquee {
    background: var(--deep);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    overflow: hidden; padding: 20px 0;
    display: flex; user-select: none;
  }
  .marquee-track { display: flex; flex-shrink: 0; gap: 44px; padding-right: 44px; animation: scrollX 42s linear infinite; }
  @keyframes scrollX { to { transform: translateX(-100%); } }
  .marquee span {
    font-size: 12px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
    color: rgba(255,255,255,.3); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 44px;
  }
  .marquee span::after { content: '❄'; color: var(--ice); font-size: 10px; opacity: .6; }

  /* ═══════════ SEÇÕES ═══════════ */
  section { padding: 110px var(--pad); position: relative; z-index: 5; }
  .sec-alt { background: var(--gray); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .wrap { max-width: 1320px; margin: 0 auto; }

  .section-label {
    display: flex; align-items: center; gap: 12px;
    font-size: 10px; font-weight: 700; letter-spacing: .35em; text-transform: uppercase;
    color: var(--gray-light); margin-bottom: 18px;
  }
  .section-label::before { content: ''; width: 26px; height: 1px; background: var(--ice); }

  .section-title {
    font-size: clamp(30px, 4.6vw, 58px);
    font-weight: 900; text-transform: uppercase;
    line-height: .94; letter-spacing: -.022em;
    font-variation-settings: 'wdth' 110;
  }
  .section-title em {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: 1.1em; line-height: 1.02;
    font-variation-settings: normal;
    text-transform: none; letter-spacing: -.01em;
    color: rgba(255,255,255,.7);
  }

  .section-intro {
    font-size: 15px; color: rgba(255,255,255,.6);
    line-height: 1.8; max-width: 620px; margin-top: 22px;
  }
  .sec-head { margin-bottom: 62px; }
  .sec-head-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }


  /* ═══════════ PILARES ═══════════ */
  .pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(216px, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line); }
  .pillar { background: var(--black); padding: 38px 30px; transition: background .25s; }
  .sec-alt .pillar { background: var(--gray); }
  .pillar:hover { background: rgba(154,217,238,.05); }
  .pillar .ico { font-size: 20px; margin-bottom: 20px; display: block; filter: grayscale(1) brightness(2.2); }
  .pillar h3 { font-size: 12.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 12px; }
  .pillar p { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.72; }

  /* ═══════════ SPLIT (experiência) ═══════════ */
  .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
  .split-media { position: relative; }
  .split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: contrast(1.04) saturate(.94); }
  .split-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,7,10,.5), transparent 55%);
    pointer-events: none;
  }
  .split-badge {
    position: absolute; bottom: -1px; left: -1px; z-index: 2;
    background: var(--black); border: 1px solid var(--line);
    padding: 22px 28px;
  }
  .split-badge b { display: block; font-size: 34px; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
  .split-badge span { font-size: 9.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gray-light); }

  .steplist { list-style: none; margin-top: 34px; }
  .steplist li {
    display: flex; gap: 18px; padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px; color: rgba(255,255,255,.66); line-height: 1.7;
  }
  .steplist li:first-child { border-top: 1px solid var(--line-soft); }
  .steplist li::before {
    content: '—'; color: var(--ice); flex-shrink: 0; font-weight: 700;
  }

  /* ═══════════ PERFIS ═══════════ */
  .perfis { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 2px; }
  .perfil {
    position: relative; overflow: hidden;
    background: var(--gray); border: 1px solid var(--line);
    padding: 44px 32px 40px;
    transition: background .28s, transform .28s;
  }
  .sec-alt .perfil { background: var(--black); }
  .perfil::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--ice); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.16,1,.3,1);
  }
  .perfil:hover::before { transform: scaleX(1); }
  .perfil:hover { background: rgba(255,255,255,.045); }
  .perfil .num { font-size: 10px; font-weight: 700; letter-spacing: .3em; color: var(--gray-light); margin-bottom: 26px; display: block; }
  .perfil h3 { font-variation-settings: 'wdth' 108; font-size: 21px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 14px; }
  .perfil p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.75; }

  /* ═══════════ INCLUSOS ═══════════ */
  .incluso-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line); }
  @media (max-width: 1024px) { .incluso-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px)  { .incluso-grid { grid-template-columns: 1fr; } }
  .incluso {
    background: var(--black); padding: 28px 30px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: background .22s;
  }
  .sec-alt .incluso { background: var(--gray); }
  .incluso:hover { background: rgba(154,217,238,.05); }
  .incluso svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; stroke: var(--ice); }
  .incluso span { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }

  /* ═══════════ DESTINOS ═══════════ */
  .destinos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .destino {
    position: relative; overflow: hidden; isolation: isolate;
    background: var(--gray); border: 1px solid var(--line);
    min-height: 300px; padding: 34px 32px;
    display: flex; flex-direction: column; justify-content: flex-end;
    text-decoration: none; color: var(--white);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
  }
  .destino.feat { grid-column: span 2; min-height: 420px; }
  .destino.wide { grid-column: span 3; min-height: 300px; }
  .destino.wide p { max-width: 560px; }
  @media (max-width: 1024px) {
    .destinos { grid-template-columns: repeat(2, 1fr); }
    .destino.feat, .destino.wide { grid-column: span 2; }
  }
  @media (max-width: 640px) {
    .destinos { grid-template-columns: 1fr; }
    .destino.feat, .destino.wide { grid-column: span 1; }
  }

  .destino-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); filter: saturate(.9); }
  .destino:hover .destino-bg { transform: scale(1.07); }
  .destino::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to top, rgba(5,7,10,.95) 12%, rgba(5,7,10,.6) 58%, rgba(5,7,10,.2) 100%);
    transition: opacity .35s;
  }

  .destino .idx {
    position: absolute; top: 28px; right: 30px;
    font-size: 11px; font-weight: 800; letter-spacing: .2em; color: rgba(255,255,255,.28);
  }
  .destino .reg {
    font-size: 9.5px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
    color: var(--ice); margin-bottom: 14px;
  }
  .destino h3 {
    font-size: clamp(23px, 2.4vw, 34px); font-weight: 900; text-transform: uppercase;
    letter-spacing: -.025em; line-height: .98; margin-bottom: 14px;
  }
  .destino p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 420px; margin-bottom: 22px; }
  .destino .go {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--white);
  }
  .destino .go svg { width: 15px; height: 15px; transition: transform .3s; }
  .destino:hover .go svg { transform: translateX(6px); }

  /* ═══════════ VANTAGENS ═══════════ */
  .vantagens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line); }
  @media (max-width: 1024px) { .vantagens { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px)  { .vantagens { grid-template-columns: 1fr; } }
  .vantagem { background: var(--black); padding: 40px 34px; transition: background .25s; }
  .sec-alt .vantagem { background: var(--gray); }
  .vantagem:hover { background: rgba(255,255,255,.04); }
  .vantagem .n { font-size: 10px; font-weight: 700; letter-spacing: .28em; color: var(--ice); display: block; margin-bottom: 22px; }
  .vantagem h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
  .vantagem p { font-size: 13.5px; color: rgba(255,255,255,.53); line-height: 1.75; }

  /* ═══════════ GALERIA ═══════════ */
  #momentos { padding-left: 0; padding-right: 0; overflow: hidden; }
  #momentos .sec-head { padding: 0 var(--pad); }
  .gal-row { display: flex; gap: 12px; padding-bottom: 12px; }
  .gal-track { display: flex; gap: 12px; flex-shrink: 0; padding-right: 12px; animation: scrollX 60s linear infinite; }
  .gal-row.rev .gal-track { animation-duration: 74s; animation-direction: reverse; }
  .gal-row:hover .gal-track { animation-play-state: paused; }
  .gal-track figure { position: relative; width: 300px; height: 300px; flex-shrink: 0; overflow: hidden; }
  .gal-track img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.03); transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s; }
  .gal-track figure:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.05); }
  @media (max-width: 640px) { .gal-track figure { width: 210px; height: 210px; } }

  /* ═══════════ RIDERS ═══════════ */
  .riders { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
  .riders-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .riders-mosaic img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .riders-mosaic img:nth-child(1) { aspect-ratio: 1/1.18; }
  .riders-mosaic img:nth-child(4) { aspect-ratio: 1/1.18; }


  /* ═══════════ INSTAGRAM ═══════════ */
  #instagram { background: var(--deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .ig-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; flex-wrap: wrap; margin-bottom: 46px;
  }
  .ig-handle {
    display: inline-flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--white); margin-top: 18px;
  }
  .ig-handle .glyph {
    width: 46px; height: 46px; flex-shrink: 0;
    display: grid; place-items: center; border-radius: 12px;
    background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
  }
  .ig-handle .glyph svg { width: 24px; height: 24px; }
  .ig-handle b { font-size: 22px; font-weight: 800; letter-spacing: -.02em; font-variation-settings: 'wdth' 108; }
  .ig-handle span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gray-light); margin-top: 3px; }

  .ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
  @media (max-width: 1024px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 520px)  { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

  .ig-tile {
    position: relative; display: block; overflow: hidden;
    aspect-ratio: 1; background: var(--gray);
  }
  .ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1), filter .35s; }
  .ig-tile::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(5,7,10,.62);
    opacity: 0; transition: opacity .3s;
  }
  .ig-tile .mark {
    position: absolute; inset: 0; z-index: 2;
    display: grid; place-items: center;
    opacity: 0; transform: scale(.8); transition: opacity .3s, transform .35s cubic-bezier(.16,1,.3,1);
  }
  .ig-tile .mark svg { width: 30px; height: 30px; color: #fff; }
  .ig-tile:hover img { transform: scale(1.08); filter: saturate(1.08); }
  .ig-tile:hover::after { opacity: 1; }
  .ig-tile:hover .mark { opacity: 1; transform: scale(1); }

  .ig-foot {
    margin-top: 40px; display: flex; align-items: center; justify-content: space-between;
    gap: 22px; flex-wrap: wrap;
  }
  .ig-foot p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 520px; }
  .btn-ig {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font); font-size: 12px; font-weight: 700;
    letter-spacing: .17em; text-transform: uppercase;
    padding: 16px 34px; border-radius: 2px; text-decoration: none;
    color: #fff; border: 2px solid transparent;
    background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
    transition: filter .22s, transform .22s;
  }
  .btn-ig:hover { filter: brightness(1.12); }
  .btn-ig svg { width: 17px; height: 17px; }

  /* ═══════════ DEPOIMENTOS ═══════════ */
  .depos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; }
  .depo {
    background: var(--gray); border: 1px solid var(--line);
    padding: 42px 34px; display: flex; flex-direction: column; gap: 22px;
    transition: background .25s;
  }
  .sec-alt .depo { background: var(--black); }
  .depo:hover { background: rgba(255,255,255,.04); }
  .depo .stars { color: var(--ice); font-size: 13px; letter-spacing: .22em; }
  .depo blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.82); font-weight: 400; font-style: italic; flex: 1; }
  .depo cite {
    font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gray-light); font-style: normal;
    padding-top: 20px; border-top: 1px solid var(--line-soft);
  }

  /* ═══════════ PASSOS ═══════════ */
  .passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  @media (max-width: 860px) { .passos { grid-template-columns: 1fr; } }
  .passo { background: var(--gray); border: 1px solid var(--line); padding: 46px 36px; position: relative; overflow: hidden; }
  .sec-alt .passo { background: var(--black); }
  .passo .big {
    position: absolute; top: -20px; right: 6px;
    font-size: 128px; font-weight: 900; line-height: 1;
    color: rgba(255,255,255,.035); letter-spacing: -.06em; pointer-events: none;
  }
  .passo h3 { font-variation-settings: 'wdth' 108; font-size: 19px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 14px; position: relative; }
  .passo p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.75; position: relative; }

  /* ═══════════ FAQ ═══════════ */
  .faq { border-top: 1px solid var(--line); }
  .faq details { border-bottom: 1px solid var(--line); }
  .faq summary {
    list-style: none; cursor: pointer; padding: 26px 46px 26px 0; position: relative;
    font-size: 15px; font-weight: 700; letter-spacing: .02em;
    transition: color .2s;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary:hover { color: var(--ice); }
  .faq summary::after {
    content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    font-size: 22px; font-weight: 300; color: var(--ice); transition: transform .3s;
  }
  .faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  .faq .ans { padding: 0 60px 28px 0; font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.85; }

  /* ═══════════ CTA FINAL ═══════════ */
  #cta-final {
    position: relative; overflow: hidden;
    text-align: center; padding: 130px var(--pad);
    border-top: 1px solid var(--line);
  }
  #cta-final .bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) brightness(.5); }
  #cta-final::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse at center, rgba(5,7,10,.55) 0%, rgba(5,7,10,.93) 72%);
  }
  #cta-final .inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
  #cta-final h2 { font-size: clamp(32px, 5.2vw, 66px); font-weight: 900; text-transform: uppercase; line-height: .94; letter-spacing: -.025em; font-variation-settings: 'wdth' 110; margin-bottom: 26px; }
  #cta-final h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.1em; line-height: .95; font-variation-settings: normal; text-transform: none; color: rgba(255,255,255,.72); }
  #cta-final p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 40px; }
  #cta-final .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ═══════════ FOOTER ═══════════ */
  footer { background: var(--deep); border-top: 1px solid var(--line); padding: 78px var(--pad) 0; position: relative; z-index: 5; }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; max-width: 1320px; margin: 0 auto 64px; }
  @media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  @media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
  .foot-brand img { height: 74px; width: auto; margin-bottom: 24px; }
  .foot-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 340px; margin-bottom: 26px; }
  footer h4 { font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 22px; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
  footer ul a, footer ul span { font-size: 13.5px; color: rgba(255,255,255,.58); text-decoration: none; transition: color .2s; }
  footer ul a:hover { color: var(--ice); }

  .foot-credits {
    max-width: 1320px; margin: 0 auto; padding: 22px 0 0;
    border-top: 1px solid var(--line-soft);
    font-size: 10.5px; line-height: 1.9; color: rgba(255,255,255,.26);
  }
  .foot-credits a { color: rgba(255,255,255,.38); text-decoration: none; }
  .foot-credits a:hover { color: var(--ice); }
  .foot-bottom {
    max-width: 1320px; margin: 0 auto; padding: 26px 0 34px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
    font-size: 11px; color: rgba(255,255,255,.34); letter-spacing: .06em;
  }
  .foot-bottom a { color: rgba(255,255,255,.34); text-decoration: none; }
  .foot-bottom a:hover { color: var(--ice); }


  /* ═══════════ MODAL DE LEAD ═══════════ */
  #lead-modal {
    position: fixed; inset: 0; z-index: 400;
    display: grid; place-items: center; padding: 22px;
    background: rgba(3,5,8,.82); backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s;
  }
  #lead-modal.open { opacity: 1; visibility: visible; }
  .lead-box {
    width: 100%; max-width: 460px; position: relative;
    background: var(--gray); border: 1px solid var(--line);
    padding: 44px 40px 36px;
    transform: translateY(14px) scale(.985);
    transition: transform .34s cubic-bezier(.16,1,.3,1);
    max-height: 92vh; overflow-y: auto;
  }
  #lead-modal.open .lead-box { transform: none; }
  .lead-box .close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border: 0; cursor: pointer;
    background: none; color: rgba(255,255,255,.45); font-size: 22px; line-height: 1;
    transition: color .2s;
  }
  .lead-box .close:hover { color: var(--white); }
  .lead-box .tag {
    font-size: 9.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
    color: var(--ice); display: block; margin-bottom: 14px;
  }
  .lead-box h3 {
    font-size: 27px; font-weight: 900; text-transform: uppercase;
    letter-spacing: -.02em; line-height: .98; margin-bottom: 12px;
    font-variation-settings: 'wdth' 108;
  }
  .lead-box .sub { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; }
  .lead-field { margin-bottom: 16px; }
  .lead-field label {
    display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gray-light); margin-bottom: 8px;
  }
  .lead-field input {
    width: 100%; font-family: var(--font); font-size: 15px; color: var(--white);
    background: rgba(255,255,255,.04); border: 1px solid var(--line);
    border-radius: 2px; padding: 14px 16px;
    transition: border-color .2s, background .2s;
  }
  .lead-field input::placeholder { color: rgba(255,255,255,.28); }
  .lead-field input:focus { outline: none; border-color: var(--ice); background: rgba(255,255,255,.07); }
  .lead-field input[aria-invalid="true"] { border-color: #ff6b6b; }
  .lead-err { font-size: 11.5px; color: #ff8a8a; margin-top: 7px; display: none; }
  .lead-field.bad .lead-err { display: block; }
  .lead-box .btn-wa { width: 100%; justify-content: center; margin-top: 10px; }
  .lead-box .btn-wa[disabled] { opacity: .6; pointer-events: none; }
  .lead-skip {
    display: block; width: 100%; margin-top: 16px; padding: 8px;
    background: none; border: 0; cursor: pointer;
    font-family: var(--font); font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38);
    transition: color .2s;
  }
  .lead-skip:hover { color: rgba(255,255,255,.7); }
  .lead-privacy { font-size: 10.5px; color: rgba(255,255,255,.3); line-height: 1.7; margin-top: 18px; text-align: center; }
  /* honeypot: invisível para gente, irresistível para robô */
  .lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  /* ═══════════ AVISO DE COOKIES ═══════════ */
  #consent {
    position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 350;
    max-width: 560px;
    background: rgba(10,14,20,.97); backdrop-filter: blur(12px);
    border: 1px solid var(--line); padding: 24px 26px;
    display: none; gap: 18px; flex-direction: column;
    box-shadow: 0 18px 60px rgba(0,0,0,.5);
  }
  #consent.show { display: flex; }
  #consent p { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.75; }
  #consent p a { color: var(--ice); text-decoration: none; }
  #consent .row { display: flex; gap: 10px; flex-wrap: wrap; }
  #consent button {
    font-family: var(--font); font-size: 11px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    padding: 12px 24px; border-radius: 2px; cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
  }
  #consent .ok  { background: var(--white); color: var(--deep); border: 1px solid var(--white); }
  #consent .ok:hover { background: var(--ice); border-color: var(--ice); }
  #consent .no  { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.22); }
  #consent .no:hover { border-color: var(--white); color: var(--white); }
  @media (max-width: 560px) { #consent { left: 12px; right: 12px; bottom: 12px; padding: 20px; } }

  /* ═══════════ WHATSAPP FLUTUANTE ═══════════ */
  .wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 300;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #04140a;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 34px rgba(37,211,102,.32);
    transition: transform .25s;
    opacity: 0; transform: scale(.5); pointer-events: none;
  }
  .wa-float.show { opacity: 1; transform: scale(1); pointer-events: auto; }
  .wa-float:hover { transform: scale(1.09); }
  .wa-float svg { width: 28px; height: 28px; }

  /* ═══════════ RESPONSIVO ═══════════ */
  @media (max-width: 1024px) {
    :root { --pad: 40px; }
    .split, .riders { grid-template-columns: 1fr; gap: 44px; }
    .split-media img { aspect-ratio: 16/10; }
    section { padding: 84px var(--pad); }
  }
  @media (max-width: 860px) {
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
  }
  @media (max-width: 560px) {
    :root { --pad: 22px; }
    section { padding: 68px var(--pad); }
    .hero-content { padding-bottom: 64px; }
    .hero-title { font-size: clamp(38px, 12vw, 58px); }
    .btn-primary, .btn-secondary, .btn-wa { width: 100%; justify-content: center; padding: 15px 20px; }
    .hero-ctas { width: 100%; }
    .pl-mark { width: 132px; height: 132px; }
  }

  /* ═══════════ PÁGINAS DE DESTINO ═══════════ */
  /* Hero menor que o da home: aqui a foto é apoio, não espetáculo. */
  #hero.destino-hero { min-height: 78svh; }
  @media (max-width: 640px) { #hero.destino-hero { min-height: 88svh; } }

  .crumbs {
    display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
    font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .crumbs a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
  .crumbs a:hover { color: var(--ice); }
  .crumbs span[aria-hidden] { color: rgba(255,255,255,.25); }
  .crumbs [aria-current] { color: rgba(255,255,255,.85); }

  /* o <em> aqui é a chamada do destino, não a segunda metade de uma frase */
  .destino-hero .hero-title em { font-size: .46em; margin-top: .18em; }

  .steplist li b {
    color: var(--white); font-weight: 700;
    letter-spacing: .01em;
  }

  /* O aviso de cookies é fixo no canto inferior esquerdo e estava cobrindo o
     CTA do hero das páginas de destino. Sobe o bloco para os dois conviverem. */
  .destino-hero .hero-content { padding-bottom: 148px; }
  @media (max-width: 640px) { .destino-hero .hero-content { padding-bottom: 210px; } }
