/* =========================================================================
   Hotel Tubarão — style.css
   Arquitetura: CSS cascade layers (reset → base → layout → components → utils)
   Direção visual: boutique editorial · navy + azul de marca (tubarão) + dourado (selo 50 anos) + areia
   ========================================================================= */

@layer ambient, reset, base, layout, components, utilities;

/* ============================ DESIGN SYSTEM ============================ */
:root {
  /* Cores — marca (azul), confiança (navy), valor/selo (dourado), conforto (areia) */
  --navy-900: #0b1f33;
  --navy-800: #102a44;
  --navy-700: #18395a;
  --gold-500: #c8a45c;
  --gold-400: #d7b978;
  /* Azul de marca — derivado do logo (tubarão): navy → azure → ciano */
  --brand-700: #0a3e86;
  --brand-600: #0e4ea8;
  --brand-500: #1763c4;
  --brand-400: #3f93e0;
  --brand-300: #5cc4f0;
  --sand-100: #f6efe3;
  --sand-200: #ece1cd;
  --cream:    #fbf8f2;
  --ink:      #18222e;
  --muted:    #5d6b7a;
  --line:     rgba(11, 31, 51, 0.12);
  --white:    #ffffff;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Espaçamento e medidas */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Sombras */
  --shadow-sm: 0 4px 16px rgba(11, 31, 51, 0.08);
  --shadow-md: 0 18px 48px rgba(11, 31, 51, 0.14);

  /* Movimento */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ================================ RESET ================================ */
@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  * { margin: 0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; overflow-x: hidden; }

  /* Lenis (smooth scroll) — garante um único dono do scroll */
  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }
  .lenis.lenis-smooth iframe { pointer-events: none; }
  body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img, svg, iframe { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; padding: 0; }
  button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
  a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
  :focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; border-radius: 4px; }
}

/* ================================ BASE ================================ */
@layer base {
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    text-wrap: pretty;
  }

  h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; }

  .skip-link {
    position: absolute;
    left: 1rem; top: -100%;
    z-index: 1000;
    background: var(--navy-900); color: var(--cream);
    padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius) var(--radius);
    transition: top 0.25s var(--ease);
  }
  .skip-link:focus { top: 0; }
}

/* =============================== LAYOUT =============================== */
@layer layout {
  .container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

  .section { padding-block: var(--section-y); }
  .section--alt { background: var(--sand-100); }

  .section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
  .section__eyebrow {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--brand-600); margin-bottom: 0.8rem;
  }
  .section__title { font-size: clamp(1.8rem, 5vw, 2.7rem); color: var(--navy-900); }
  .section__lead { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
}

/* ============================= COMPONENTS ============================= */
@layer components {

  /* ---- Marca ---- */
  .brand { display: inline-flex; align-items: center; gap: 0.6rem; }
  .brand__logo { height: 48px; width: 48px; display: block; border-radius: 50%; }
  .brand--footer .brand__logo { height: 64px; width: 64px; }
  .brand__mark {
    display: grid; place-items: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  }
  .brand__name { font-family: var(--font-display); font-size: 1.18rem; color: var(--navy-900); }
  .brand__name strong { font-weight: 600; }

  /* ---- Selo "50 anos" — autoridade de marca (namespace dc-) ---- */
  .dc-seal {
    display: inline-flex; align-items: center; gap: 0.55rem; width: max-content;
    padding: 0.4rem 0.95rem 0.4rem 0.6rem; border-radius: 999px; line-height: 1;
    border: 1px solid color-mix(in oklab, var(--gold-500) 50%, transparent);
    background: color-mix(in oklab, var(--gold-500) 12%, transparent);
  }
  .dc-seal__num {
    font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
    color: var(--gold-400); letter-spacing: -0.02em;
  }
  .dc-seal__label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: color-mix(in oklab, var(--gold-400) 85%, var(--cream));
  }
  .hero__content .dc-seal { margin-bottom: 1.2rem; }
  .site-footer .dc-seal { margin-top: 1.25rem; }

  /* ---- Botões ---- */
  .btn {
    --btn-bg: var(--navy-900);
    --btn-fg: var(--cream);
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.6rem; border-radius: 100px;
    font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
    background: var(--btn-bg); color: var(--btn-fg);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  }
  @media (hover: hover) { .btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-md); } }
  .btn:active { transform: translateY(0) scale(0.99); }
  .btn .ripple {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: rgba(11, 31, 51, 0.18);
    transform: scale(0); opacity: 0.6;
    animation: ripple 0.6s var(--ease) forwards;
  }
  @keyframes ripple { to { transform: scale(2.6); opacity: 0; } }
  .btn--gold { --btn-bg: linear-gradient(135deg, var(--gold-400), var(--gold-500)); --btn-fg: var(--navy-900); }
  .btn--ghost { --btn-bg: transparent; --btn-fg: var(--cream); border: 1.5px solid rgba(255,255,255,0.5); }
  .btn--ghost.btn--dark { --btn-fg: var(--navy-900); border-color: var(--line); }
  .btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
  .btn--block { width: 100%; }

  /* ---- Header / Nav ---- */
  .site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--header-h);
    display: flex; align-items: center;
    transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  /* Pseudo-elemento de fundo: evita criar containing-block para o menu fixo
     (mantém o backdrop-filter isolado do menu mobile) */
  .site-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(251, 248, 242, 0.85);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; transition: opacity 0.3s var(--ease);
  }
  .site-header[data-scrolled]::before { opacity: 1; }
  .site-header[data-scrolled] { box-shadow: 0 1px 0 var(--line); }

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

  .nav { display: flex; align-items: center; gap: 1.5rem; }
  .nav__list { display: flex; align-items: center; gap: 1.6rem; }
  .nav__link { font-weight: 500; color: var(--navy-800); position: relative; padding: 0.25rem 0; }
  .nav__link::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
    background: var(--brand-500); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s var(--ease);
  }
  .nav__link:hover::after { transform: scaleX(1); }
  /* scroll-spy: a seção em foco mantém destaque persistente (desktop) */
  .nav__link.is-active { color: var(--brand-600); }
  .nav__link.is-active::after { transform: scaleX(1); }
  .nav__cta { padding: 0.6rem 1.2rem; }

  /* Exclusivos do drawer mobile — ocultos no desktop */
  .nav__grid, .nav__heading, .nav__mobile-cta, .nav__mobile-foot { display: none; }

  /* ---- Botão do menu (mobile): círculo premium, hambúrguer → X ---- */
  .menu-toggle {
    display: none; position: relative; width: 44px; height: 44px; padding: 0;
    align-items: center; justify-content: center; cursor: pointer; overflow: hidden; z-index: 101;
    background: rgba(251, 248, 242, 0.9);
    border: 1px solid color-mix(in oklab, var(--brand-500) 40%, transparent);
    border-radius: 13px; color: var(--navy-900);
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  .menu-toggle:is(:hover, :focus-visible) { border-color: var(--brand-500); box-shadow: 0 0 22px -8px var(--brand-500); }
  body.menu-open .menu-toggle { background: color-mix(in oklab, var(--brand-500) 12%, var(--cream)); border-color: var(--brand-500); }
  .menu-toggle__bars { position: relative; display: block; width: 20px; height: 14px; }
  .menu-toggle__bars::before, .menu-toggle__bars::after, .menu-toggle__bars > span {
    content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px;
    transition: transform 440ms var(--ease), opacity 200ms var(--ease), width 320ms var(--ease), left 320ms var(--ease);
  }
  .menu-toggle__bars::before { top: 0; }
  .menu-toggle__bars > span  { top: 6px; left: 25%; width: 75%; }
  .menu-toggle__bars::after  { bottom: 0; width: 60%; }
  body.menu-open .menu-toggle__bars::before { transform: translateY(6px) rotate(45deg); width: 100%; left: 0; }
  body.menu-open .menu-toggle__bars > span  { opacity: 0; transform: translateX(-10px); }
  body.menu-open .menu-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); width: 100%; left: 0; }

  /* ---- Overlay do menu (mobile) ---- */
  .menu-overlay {
    display: none; position: fixed; inset: 0; z-index: 95; opacity: 0;
    background: color-mix(in oklab, var(--navy-900) 70%, transparent);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.3s var(--ease);
  }
  body.menu-open .menu-overlay { display: block; opacity: 1; }

  /* ---- Hero ---- */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: center; isolation: isolate; }
  .hero__media {
    position: absolute; inset: 0; z-index: -1; overflow: hidden;
    /* Base/fallback: gradiente navy garante visual premium antes da foto real. */
    background: radial-gradient(120% 120% at 70% 10%, var(--navy-700), var(--navy-900));
  }
  /* Foto do hero (blur-up via .media__img). Troque assets/img/hero.webp pela real (~1920px WebP).
     Layout via top/height; o transform fica exclusivo do parallax (um dono por propriedade). */
  .hero__img { position: absolute; left: 0; top: -10%; width: 100%; height: 120%; object-fit: cover; }
  /* Overlay de contraste, por cima da foto */
  .hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,31,51,0.55) 0%, rgba(11,31,51,0.72) 100%);
  }
  .hero__content { padding-top: var(--header-h); color: var(--cream); max-width: 720px; }
  .hero__eyebrow {
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--brand-300); margin-bottom: 1.2rem;
  }
  .hero__title { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 500; }
  .hero__subtitle { margin-top: 1.4rem; font-size: clamp(1.05rem, 2.5vw, 1.25rem); color: rgba(251,248,242,0.86); max-width: 52ch; }
  .hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
  .hero__trust {
    display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2.6rem;
    font-size: 0.92rem; color: rgba(251,248,242,0.82);
  }
  .hero__trust li { display: flex; align-items: center; gap: 0.5rem; }
  .hero__trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-300); }

  /* ---- Comodidades ---- */
  .amenities { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
  .amenity {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.75rem; box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  @media (hover: hover) { .amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); } }
  .amenity__icon {
    display: grid; place-items: center; width: 54px; height: 54px; border-radius: 12px;
    background: color-mix(in oklab, var(--brand-500) 12%, var(--cream)); color: var(--brand-600); margin-bottom: 1.1rem;
  }
  .amenity__title { font-size: 1.2rem; color: var(--navy-900); margin-bottom: 0.4rem; }
  .amenity__text { color: var(--muted); font-size: 0.96rem; }

  /* ---- Quartos ---- */
  .rooms { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
  .room-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  @media (hover: hover) { .room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); } }
  .room-card__media {
    position: relative; overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--navy-800) center / cover no-repeat;
    background-image: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  }
  .room-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .room-card__body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
  .room-card__tag {
    align-self: flex-start; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--navy-900); background: var(--gold-400); padding: 0.3rem 0.7rem; border-radius: 100px;
  }
  .room-card__title { font-size: 1.5rem; color: var(--navy-900); }
  .room-card__text { color: var(--muted); font-size: 0.96rem; flex: 1; }
  .room-card__body .btn { margin-top: 0.4rem; }
  .room-card--featured { border-color: var(--gold-500); box-shadow: 0 18px 48px rgba(200,164,92,0.22); }

  /* ---- Localização ---- */
  .location { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
  .location__list { margin: 1.75rem 0; display: grid; gap: 1rem; }
  .location__list li { display: grid; gap: 0.15rem; }
  .location__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-600); }
  .location__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
  .location__map {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
    width: 100%; min-width: 0; max-width: 100%;
    aspect-ratio: 4 / 3; min-height: 320px;
  }
  .location__map iframe { display: block; width: 100%; height: 100%; border: 0; }

  /* ---- Como funciona (steps) ---- */
  .steps { display: grid; gap: 1.5rem; grid-template-columns: 1fr; counter-reset: step; }
  .step {
    position: relative; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm);
  }
  .step__num {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
    background: var(--navy-900); color: var(--gold-400);
    font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 1rem;
  }
  .step__title { font-size: 1.2rem; color: var(--navy-900); margin-bottom: 0.4rem; }
  .step__text { color: var(--muted); font-size: 0.96rem; }
  .steps__cta { margin-top: clamp(1.75rem, 4vw, 2.5rem); display: flex; justify-content: center; }

  /* ---- CTA final ---- */
  /* ---- Faixa de números (autoridade) ---- */
  .stats-section { padding-block: clamp(2rem, 5vw, 3.25rem); }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
  .stat { display: flex; flex-direction: column; gap: 0.2rem; }
  .stat__num { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); font-weight: 600; color: var(--gold-500); line-height: 1; }
  .stat__label { font-size: clamp(0.78rem, 2.5vw, 0.95rem); color: var(--muted); }

  .cta-band {
    background: radial-gradient(120% 140% at 80% 0%, var(--navy-700), var(--navy-900));
    color: var(--cream); text-align: center;
  }
  .cta-band__inner { padding-block: clamp(3rem, 7vw, 5rem); display: grid; justify-items: center; gap: 0.8rem; }
  .cta-band__title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .cta-band__text { color: rgba(251,248,242,0.82); margin-bottom: 1rem; }

  /* ---- Footer ---- */
  .site-footer { background: var(--navy-900); color: rgba(251,248,242,0.8); padding-top: clamp(3rem, 6vw, 4.5rem); }
  .footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
  .brand--footer .brand__name { color: var(--cream); }
  .footer__about { margin-top: 1rem; max-width: 38ch; font-size: 0.95rem; }
  .footer__heading { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-300); margin-bottom: 1rem; }
  .footer__list, .footer__social { display: grid; gap: 0.6rem; }
  .footer__list a, .footer__social a { transition: color 0.2s var(--ease); }
  .footer__list a:hover, .footer__social a:hover { color: var(--brand-300); }
  .footer__bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
    padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.86rem;
  }
  .footer__credit a { color: var(--gold-400); font-weight: 600; }
  .footer__credit a:hover { text-decoration: underline; }

  /* ---- WhatsApp flutuante ---- */
  .wa-float {
    position: fixed; right: clamp(1rem, 4vw, 1.75rem); bottom: clamp(1rem, 4vw, 1.75rem);
    z-index: 90; width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center; color: var(--white);
    background: #25d366; box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    transition: transform 0.25s var(--ease);
  }
  @media (hover: hover) { .wa-float:hover { transform: scale(1.08); } }
}

/* ============================= UTILITIES ============================= */
@layer utilities {
  /* Animações de entrada (apenas transform/opacity) */
  /* Reveal só atua com JS ativo; sem JS, conteúdo 100% visível.
     Contrato declarativo (ergonomia tipo AOS, sem dependência):
       data-reveal              → entra de baixo (padrão)
       data-reveal="down|left|right|zoom|fade"
       data-reveal-delay="120"  → atraso em ms p/ stagger (aplicado via JS) */
  .js [data-reveal] {
    --reveal-shift: 24px;
    --reveal-zoom: 0.94;
    opacity: 0;
    transform: translateY(var(--reveal-shift));
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .js [data-reveal="down"]  { transform: translateY(calc(var(--reveal-shift) * -1)); }
  .js [data-reveal="left"]  { transform: translateX(var(--reveal-shift)); }
  .js [data-reveal="right"] { transform: translateX(calc(var(--reveal-shift) * -1)); }
  .js [data-reveal="zoom"]  { transform: scale(var(--reveal-zoom)); }
  .js [data-reveal="fade"]  { transform: none; }
  .js [data-reveal].is-visible { opacity: 1; transform: none; }

  /* Blur-up: imagem carrega borrada → nítida (só opacity/filter; transform fica livre p/ parallax) */
  .js .media__img { opacity: 0; filter: blur(16px); transition: opacity 0.7s var(--ease), filter 0.8s var(--ease); }
  .js .media__img.is-loaded { opacity: 1; filter: blur(0); }

  /* Stagger por CSS (transition-delay), nunca setTimeout */
  .js .amenities .amenity:nth-child(2) { transition-delay: 0.08s; }
  .js .amenities .amenity:nth-child(3) { transition-delay: 0.16s; }
  .js .amenities .amenity:nth-child(4) { transition-delay: 0.24s; }
  .js .rooms .room-card:nth-child(2) { transition-delay: 0.1s; }
  .js .rooms .room-card:nth-child(3) { transition-delay: 0.2s; }
  .js .steps .step:nth-child(2) { transition-delay: 0.1s; }
  .js .steps .step:nth-child(3) { transition-delay: 0.2s; }
}

/* ============================= RESPONSIVO ============================= */
/* Tablet */
@media (min-width: 600px) {
  .amenities { grid-template-columns: repeat(2, 1fr); }
}

/* Notebook+ : nav horizontal aparece, hamburger some */
@media (min-width: 880px) {
  .amenities { grid-template-columns: repeat(4, 1fr); }
  .rooms { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .location { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* Mobile : nav vira drawer editorial full-screen + hambúrguer */
@media (max-width: 879px) {
  .nav__cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav__grid { display: block; }
  .nav__heading, .nav__mobile-cta { display: flex; }
  .nav__mobile-foot { display: flex; }

  /* O <nav> ocupa a tela inteira */
  .nav {
    position: fixed; inset: 0; z-index: 96;
    width: 100%; height: 100dvh;
    display: grid; grid-template-rows: auto 1fr auto; gap: 0;
    padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 8vw, 3rem) clamp(1.5rem, 5vw, 3rem);
    background: var(--navy-900);
    background-image:
      radial-gradient(ellipse 100% 80% at 100% 0%, rgba(200,164,92,0.20), transparent 70%),
      radial-gradient(ellipse 80% 70% at 0% 100%, rgba(24,57,90,0.55), transparent 70%);
    overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; isolation: isolate;
    /* fechado: clip-path com origem no botão (canto sup. direito) */
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 600ms var(--ease), visibility 0ms linear 600ms;
    visibility: hidden;
  }
  body.menu-open .nav {
    clip-path: circle(150% at calc(100% - 44px) 44px); visibility: visible;
    transition: clip-path 700ms var(--ease), visibility 0ms linear 0ms;
  }

  /* CORTINA — varre antes do clip-path expandir */
  .nav::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; transform: translateX(-110%);
    background: linear-gradient(100deg, transparent 0%, var(--navy-800) 28%, var(--gold-500) 50%, var(--gold-400) 60%, var(--gold-500) 70%, transparent 100%);
  }
  body.menu-open .nav::before { animation: nav-curtain-in 760ms var(--ease) forwards; }
  body:not(.menu-open) .nav::before { animation: nav-curtain-out 480ms var(--ease) forwards; }
  body:not(.menu-open):not(.menu-was-open) .nav::before { animation: none; transform: translateX(-110%); }
  @keyframes nav-curtain-in  { 0% { transform: translateX(-110%); } 52% { transform: translateX(0); } 100% { transform: translateX(110%); } }
  @keyframes nav-curtain-out { 0% { transform: translateX(110%); } 48% { transform: translateX(0); } 100% { transform: translateX(-110%); } }

  /* linha dourada correndo no topo */
  .nav::after {
    content: ""; position: absolute; top: var(--header-h); left: clamp(1.5rem, 8vw, 3rem); right: clamp(1.5rem, 8vw, 3rem);
    height: 2px; transform: scaleX(0); transform-origin: left; z-index: 1;
    background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 50%, transparent 100%);
    transition: transform 520ms var(--ease) 300ms;
  }
  body.menu-open .nav::after { transform: scaleX(1); }

  /* grid decorativo atrás do conteúdo */
  .nav__grid {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
    background-image:
      linear-gradient(to right, rgba(251,248,242,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(251,248,242,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
    transition: opacity 400ms var(--ease) 320ms;
  }
  body.menu-open .nav__grid { opacity: 0.5; }

  /* heading: eyebrow com bolinha pulsando */
  .nav__heading {
    flex-direction: column; gap: 0.5rem; padding-bottom: 1.4rem; position: relative; z-index: 3;
    opacity: 0; transform: translateY(-12px);
    transition: opacity 400ms var(--ease) 320ms, transform 400ms var(--ease) 320ms;
  }
  body.menu-open .nav__heading { opacity: 1; transform: translateY(0); }
  .nav__heading-eyebrow {
    font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand-300);
    font-weight: 600; position: relative; padding-left: 18px;
  }
  .nav__heading-eyebrow::before {
    content: ""; position: absolute; top: 50%; left: 0; width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand-300); transform: translateY(-50%); box-shadow: 0 0 12px var(--brand-300);
    animation: nav-eyebrow-dot 2.2s var(--ease) infinite;
  }
  @keyframes nav-eyebrow-dot { 0%,100% { transform: translateY(-50%) scale(1); opacity: 1; } 50% { transform: translateY(-50%) scale(1.4); opacity: 0.6; } }

  /* links numerados editoriais */
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 0; counter-reset: navc; position: relative; z-index: 3; }
  .nav__list > li {
    counter-increment: navc; border-bottom: 1px solid rgba(251,248,242,0.08);
    opacity: 0; transform: translateX(44px); filter: blur(7px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease), filter 600ms var(--ease);
  }
  .nav__list > li:last-child { border-bottom: none; }
  body.menu-open .nav__list > li { opacity: 1; transform: translateX(0); filter: blur(0); }
  body.menu-open .nav__list > li:nth-child(1) { transition-delay: 340ms; }
  body.menu-open .nav__list > li:nth-child(2) { transition-delay: 410ms; }
  body.menu-open .nav__list > li:nth-child(3) { transition-delay: 480ms; }
  body.menu-open .nav__list > li:nth-child(4) { transition-delay: 550ms; }
  body:not(.menu-open) .nav__list > li { transition-duration: 240ms; transition-delay: 0ms; }

  .nav__link {
    position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
    padding-block: clamp(0.85rem, 2.8vw, 1.15rem); padding-inline: 0;
    font-family: var(--font-display); font-size: clamp(1.5rem, 6vw, 2.2rem); font-weight: 600; letter-spacing: -0.01em;
    color: var(--cream); text-decoration: none;
    transition: color 300ms var(--ease), padding-left 300ms var(--ease);
  }
  .nav__link::before {
    content: counter(navc, decimal-leading-zero);
    font-family: var(--font-body); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em;
    color: rgba(251,248,242,0.45); align-self: start; margin-top: 0.9em;
  }
  /* reaproveita o ::after do desktop como tracinho dourado à direita */
  .nav__link::after {
    position: static; display: block; width: 28px; height: 2px; left: auto; bottom: auto;
    background: var(--brand-300); transform: scaleX(0); transform-origin: right;
    transition: transform 320ms var(--ease); align-self: center;
  }
  .nav__link:hover, .nav__link:focus-visible { color: var(--brand-300); padding-left: 0.75rem; }
  .nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
  /* scroll-spy no drawer: cor clara para contraste no navy + traço crescendo da esquerda */
  .nav__link.is-active { color: var(--brand-300); }
  .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

  /* CTA grande dentro do drawer */
  .nav__mobile-cta {
    flex-direction: column; gap: 0.8rem; margin-top: 1.4rem; position: relative; z-index: 3;
    opacity: 0; transform: translateY(20px); filter: blur(7px);
    transition: opacity 500ms var(--ease) 740ms, transform 500ms var(--ease) 740ms, filter 500ms var(--ease) 740ms;
  }
  body.menu-open .nav__mobile-cta { opacity: 1; transform: translateY(0); filter: blur(0); }
  body:not(.menu-open) .nav__mobile-cta { transition-duration: 220ms; transition-delay: 0ms; }
  .nav__mobile-cta .btn { width: 100%; padding-block: 1rem; font-size: 1.05rem; }

  /* rodapé do drawer: socials + tag */
  .nav__mobile-foot {
    align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; padding-top: 1.2rem;
    border-top: 1px solid rgba(251,248,242,0.08); position: relative; z-index: 3;
    opacity: 0; transform: translateY(20px);
    transition: opacity 500ms var(--ease) 820ms, transform 500ms var(--ease) 820ms;
  }
  body.menu-open .nav__mobile-foot { opacity: 1; transform: translateY(0); }
  body:not(.menu-open) .nav__mobile-foot { transition-duration: 220ms; transition-delay: 0ms; }
  .nav__mobile-foot-socials { display: inline-flex; gap: 0.5rem; }
  .nav__mobile-foot-socials a {
    width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251,248,242,0.05); border: 1px solid rgba(251,248,242,0.12); border-radius: 10px;
    color: var(--cream); font-size: 0.74rem; font-weight: 600; text-decoration: none; letter-spacing: 0.04em;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
  }
  .nav__mobile-foot-socials a:hover, .nav__mobile-foot-socials a:focus-visible { transform: translateY(-2px); border-color: var(--brand-300); color: var(--brand-300); }
  .nav__mobile-foot-tag { font-size: 0.78rem; color: rgba(251,248,242,0.55); letter-spacing: 0.04em; }

  body.menu-open { overflow: hidden; }
}

/* Ultrawide : evita texto esticado demais */
@media (min-width: 1600px) {
  :root { --container: 1320px; }
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .nav { transition: none; }
}

/* ====================== AMBIENT ANIMATION (camada isolada e removível) ======================
   Movimento autônomo, sutil, em loop — não disparado por scroll/hover/cursor.
   Anima só transform/opacity (+ border-radius contido no blob). GPU via translate3d.
   Pausa só com a aba oculta (initAmbient em script.js); camada fixa e sempre visível dispensa IntersectionObserver.
   KILL SWITCH: remova data-ambient="on" do <html> e tudo para/some. */
@layer ambient {
  /* ====================================================================
     AMBIENT GLOBAL — uma única camada fixa atrás da PÁGINA INTEIRA.
     Aparece através das seções claras (corpo creme); nas seções escuras
     (hero/CTA) e na faixa sand ela fica naturalmente coberta → variação
     de profundidade. Só transform/opacity. Sem blur de tela cheia e sem
     will-change em massa (translate3d já promove em GPU).
     ==================================================================== */
  .ambient-bg {
    position: fixed; inset: 0; z-index: -1;
    overflow: hidden; pointer-events: none;
    contain: layout paint;
  }
  /* Pausa quando a aba está oculta (JS alterna a classe) */
  .ambient-bg.is-hidden-tab * { animation-play-state: paused; }

  /* ---- Auroras: dois halos radiais em deriva lenta (dourado + petróleo) ---- */
  .ambient-bg__aurora { position: absolute; inset: -15%; opacity: 0; }
  .ambient-bg__aurora--1 {
    background: radial-gradient(42rem 32rem at 50% 50%,
      rgba(200,164,92,0.16) 0%, rgba(200,164,92,0.07) 30%, transparent 68%);
  }
  .ambient-bg__aurora--2 {
    background: radial-gradient(38rem 30rem at 50% 50%,
      rgba(24,57,90,0.16) 0%, rgba(24,57,90,0.07) 32%, transparent 70%);
  }
  [data-ambient="on"] .ambient-bg__aurora--1 { animation: amb-aurora-1 38s ease-in-out infinite; }
  [data-ambient="on"] .ambient-bg__aurora--2 { animation: amb-aurora-2 50s ease-in-out infinite; }

  /* trajetórias próprias (nós deslocados, fora de fase — não é figura-8) */
  @keyframes amb-aurora-1 {
    0%   { transform: translate3d(-22%, -14%, 0) scale(1);   opacity: .45; }
    30%  { transform: translate3d( 16%, -6%, 0) scale(1.06); opacity: .80; }
    62%  { transform: translate3d( 24%, 18%, 0) scale(1.02); opacity: .60; }
    100% { transform: translate3d(-22%, -14%, 0) scale(1);   opacity: .45; }
  }
  @keyframes amb-aurora-2 {
    0%   { transform: translate3d( 20%, 12%, 0) scale(1.04); opacity: .40; }
    36%  { transform: translate3d(-14%, 22%, 0) scale(0.96); opacity: .70; }
    70%  { transform: translate3d(-18%,-16%, 0) scale(1.08); opacity: .55; }
    100% { transform: translate3d( 20%, 12%, 0) scale(1.04); opacity: .40; }
  }

  /* ---- Motes flutuantes: pontos dourados suaves, drift com stagger ---- */
  .ambient-bg__motes { position: absolute; inset: 0; }
  .ambient-bg__motes span {
    position: absolute;
    width: clamp(4px, 0.6vw, 7px); height: clamp(4px, 0.6vw, 7px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,92,0.9) 0%, rgba(200,164,92,0) 70%);
    opacity: 0;
  }
  .ambient-bg__motes span:nth-child(3n) { width: clamp(7px,1vw,11px); height: clamp(7px,1vw,11px); }
  .ambient-bg__motes span:nth-child(1)  { top: 16%; left: 12%; }
  .ambient-bg__motes span:nth-child(2)  { top: 30%; left: 24%; }
  .ambient-bg__motes span:nth-child(3)  { top: 52%; left: 14%; }
  .ambient-bg__motes span:nth-child(4)  { top: 70%; left: 30%; }
  .ambient-bg__motes span:nth-child(5)  { top: 22%; left: 50%; }
  .ambient-bg__motes span:nth-child(6)  { top: 58%; left: 46%; }
  .ambient-bg__motes span:nth-child(7)  { top: 80%; left: 40%; }
  .ambient-bg__motes span:nth-child(8)  { top: 18%; left: 76%; }
  .ambient-bg__motes span:nth-child(9)  { top: 40%; left: 84%; }
  .ambient-bg__motes span:nth-child(10) { top: 66%; left: 72%; }

  [data-ambient="on"] .ambient-bg__motes span:nth-child(1)  { animation: amb-float-1 22s ease-in-out -0s  infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(2)  { animation: amb-float-2 26s ease-in-out -4s  infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(3)  { animation: amb-float-3 30s ease-in-out -8s  infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(4)  { animation: amb-float-1 24s ease-in-out -12s infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(5)  { animation: amb-float-2 28s ease-in-out -3s  infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(6)  { animation: amb-float-3 20s ease-in-out -9s  infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(7)  { animation: amb-float-1 26s ease-in-out -14s infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(8)  { animation: amb-float-2 30s ease-in-out -6s  infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(9)  { animation: amb-float-3 24s ease-in-out -11s infinite; }
  [data-ambient="on"] .ambient-bg__motes span:nth-child(10) { animation: amb-float-1 28s ease-in-out -2s  infinite; }

  @keyframes amb-float-1 {
    0%,100% { transform: translate3d(0,0,0);            opacity: 0; }
    18%     {                                            opacity: .50; }
    50%     { transform: translate3d(26px,-100px,0);     opacity: .70; }
    82%     { transform: translate3d(14px,-168px,0);     opacity: 0; }
  }
  @keyframes amb-float-2 {
    0%,100% { transform: translate3d(0,0,0);            opacity: 0; }
    20%     {                                            opacity: .45; }
    50%     { transform: translate3d(-34px,-88px,0);     opacity: .62; }
    84%     { transform: translate3d(-20px,-150px,0);    opacity: 0; }
  }
  @keyframes amb-float-3 {
    0%,100% { transform: translate3d(0,0,0);            opacity: 0; }
    22%     {                                            opacity: .40; }
    50%     { transform: translate3d(18px,-120px,0);     opacity: .58; }
    80%     { transform: translate3d(40px,-180px,0);     opacity: 0; }
  }

  /* ---- Celular é o teto: menos motes, auroras um pouco mais discretas ---- */
  @media (max-width: 767px) {
    .ambient-bg__motes span:nth-child(n+6) { display: none; }
    /* baixa o alfa do gradiente (estático) — a opacity é do keyframe, não dá pra abaixar aqui */
    .ambient-bg__aurora--1 {
      background: radial-gradient(42rem 32rem at 50% 50%,
        rgba(200,164,92,.10) 0%, rgba(200,164,92,.045) 30%, transparent 68%);
    }
    .ambient-bg__aurora--2 {
      background: radial-gradient(38rem 30rem at 50% 50%,
        rgba(24,57,90,.10) 0%, rgba(24,57,90,.045) 32%, transparent 70%);
    }
    [data-ambient="on"] .ambient-bg__aurora--1 { animation-duration: 46s; }
    [data-ambient="on"] .ambient-bg__aurora--2 { animation-duration: 60s; }
  }

  /* ---- A11y: reduced-motion e data saver → estático/sem motes ---- */
  @media (prefers-reduced-motion: reduce), (prefers-reduced-data: reduce) {
    [data-ambient="on"] .ambient-bg * { animation: none !important; }
    /* fallback estático SÓ quando a ambient está ligada (respeita o kill switch) */
    [data-ambient="on"] .ambient-bg__aurora { opacity: .4; }
    [data-ambient="on"] .ambient-bg__motes span { opacity: 0; }
  }
}

/* =========================================================================
   Fase 4 — Selo de créditos (micro CTA do footer). Escopado em .devcode-credits,
   autocontido, sem vazar para o footer. Cores da paleta; AA sobre o navy.
   ========================================================================= */
.devcode-credits { margin: 0; align-self: center; }
.devcode-credits__link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;           /* área de toque confortável (~44px+) */
  border-radius: 10px;
  text-decoration: none;
  line-height: 1.3;
  border: 1px solid rgba(215, 185, 120, 0.18);   /* fio dourado discreto = selo */
  background: rgba(255, 255, 255, 0.02);
  transition: transform .24s cubic-bezier(.22,1,.36,1),
              box-shadow .24s cubic-bezier(.22,1,.36,1),
              border-color .24s cubic-bezier(.22,1,.36,1),
              background-color .24s cubic-bezier(.22,1,.36,1);
}
.devcode-credits__label {
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.62);
}
.devcode-credits__brand {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold-400, #d7b978);               /* 8.8:1 sobre o navy -> AA */
  transition: color .24s cubic-bezier(.22,1,.36,1);
}
.devcode-credits__hook {
  font-size: .8rem;
  color: rgba(251, 248, 242, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.devcode-credits__arrow {
  display: inline-block;
  transition: transform .24s cubic-bezier(.22,1,.36,1);
}
.devcode-credits__link:hover,
.devcode-credits__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 185, 120, 0.42);
  background: rgba(215, 185, 120, 0.06);
  box-shadow: 0 6px 18px -8px rgba(11, 31, 51, 0.6),
              0 0 0 1px rgba(215, 185, 120, 0.12);
}
.devcode-credits__link:hover .devcode-credits__brand,
.devcode-credits__link:focus-visible .devcode-credits__brand {
  color: #e7cd99;                                /* dourado mais claro (brilho +) = interatividade */
}
.devcode-credits__link:hover .devcode-credits__arrow,
.devcode-credits__link:focus-visible .devcode-credits__arrow {
  transform: translateX(3px);
}
.devcode-credits__link:focus-visible {
  outline: 2px solid var(--gold-400, #d7b978);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .devcode-credits__link,
  .devcode-credits__brand,
  .devcode-credits__arrow { transition: none; }
  .devcode-credits__link:hover,
  .devcode-credits__link:focus-visible { transform: none; }
  .devcode-credits__link:hover .devcode-credits__arrow,
  .devcode-credits__link:focus-visible .devcode-credits__arrow { transform: none; }
}

/* =========================================================================
   Acomodações por categoria (Premium / Econômica) — reserva via WhatsApp.
   Diferenciação por cor da paleta: Premium = dourado (valor/exclusividade),
   Econômica = azul de marca (fresco/confiável, ótima escolha — nunca "inferior").
   Grid flexível: fica equilibrado com 1, 2 ou 3 cards por categoria.
   ========================================================================= */
.room-category + .room-category { margin-top: 3rem; }

.room-category__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  max-width: 60ch;
  margin: 0 auto 1.75rem;
}
.room-category__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.room-category__badge--premium { background: var(--gold-400); color: var(--navy-900); }
.room-category__badge--economy { background: var(--brand-500); color: #fff; }
.room-category__title { font-size: clamp(1.4rem, 3vw, 1.7rem); color: var(--navy-900); }
.room-category__desc { color: var(--muted); font-size: 0.98rem; }

.room-category__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.room-category__grid .room-card { flex: 1 1 300px; max-width: 380px; }

/* Selo de categoria sobre a imagem do quarto */
.room-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.72rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(11, 31, 51, 0.28);
}
.room-card__badge--premium { background: var(--gold-400); color: var(--navy-900); }
.room-card__badge--economy { background: var(--brand-500); color: #fff; }

/* Acentos sutis de borda por categoria (não competem com o conteúdo) */
.room-card--premium { border-color: var(--gold-500); }
.room-card--economy { border-color: var(--brand-400); }

/* =========================================================================
   CAMADA DE REFINAMENTO — calor ambiente + destaque de conversão
   1) Luz quente do hero (ambient motion hoteleiro): brilho dourado que respira
      e deriva devagar atrás do conteúdo — só transform/opacity (compositado, 60fps).
   2) CTA dourado com destaque absoluto: halo quente em repouso + brilho que
      cruza a superfície no hover (luz "pegando" no dourado, como em um lobby).
   3) Reassurance reduz fricção/ansiedade até o clique.
   Tudo respeita prefers-reduced-motion.
   ========================================================================= */

/* Conteúdo do hero sempre acima da luz ambiente */
.hero__content { position: relative; z-index: 1; }

/* 1) Luz quente ambiente — entre a media (z-index:-1) e o conteúdo (z-index:1) */
.hero::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 46% at 74% 28%, rgba(215, 185, 120, 0.20), transparent 70%),
    radial-gradient(30% 40% at 84% 66%, rgba(92, 196, 240, 0.08), transparent 72%);
  animation: hero-warmth 16s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes hero-warmth {
  0%, 100% { opacity: 0.75; transform: translate3d(0, 0, 0) scale(1); }
  50%      { opacity: 1;    transform: translate3d(-3%, 2.5%, 0) scale(1.08); }
}

/* 2) CTA dourado: halo quente (destaque sem cor nova, sem quebrar a harmonia) */
.btn--gold { box-shadow: 0 8px 24px -8px rgba(200, 164, 92, 0.5); }
.btn--gold::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0; width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-190%) skewX(-14deg);
  pointer-events: none;
}
@media (hover: hover) {
  .btn--gold:hover { box-shadow: 0 16px 38px -8px rgba(200, 164, 92, 0.62); }
  .btn--gold:hover::before {
    transition: transform 0.75s var(--ease);
    transform: translateX(320%) skewX(-14deg);
  }
}

/* 3) Reassurance sob o CTA do hero */
.hero__reassure {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(251, 248, 242, 0.74);
  max-width: 46ch;
}

/* Acessibilidade: sem movimento; o calor permanece (estático) */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .btn--gold::before { display: none; }
}

/* Contém a luz quente (inset negativo + scale) dentro do hero — sem scroll-x */
.hero { overflow: hidden; }
