/* =========================================================================
   MdAyres Music — Design System
   Zero dependencies. Zero webfonts (system stack = 0 ms, no FOUT).

   COLOR RULES (every pair below was measured, not guessed):
   · Body text ≥ 4.5:1 against its own surface. Large/bold text ≥ 3:1.
   · Amber is NEVER used as text at its vivid value — vivid amber on white
     measures 1.78:1. Text uses --accent-ink, which is re-tuned per theme.
   · No gradient text anywhere: a gradient clip has no measurable contrast,
     and it is the single loudest "template" tell in the whole page.
   ========================================================================= */

/* ---------------------------------------------------------------- TOKENS */
:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI Variable Display", "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Type — larger, tighter, more confident than the previous scale */
  --fs-display: clamp(2.9rem, 1.05rem + 7.8vw, 7rem);
  --fs-h2:      clamp(2.15rem, 1.2rem + 3.6vw, 4.25rem);
  --fs-h3:      clamp(1.25rem, 1.06rem + .78vw, 1.6rem);
  --fs-lead:    clamp(1.09rem, .99rem + .56vw, 1.5rem);
  --fs-body:    clamp(1rem, .96rem + .2vw, 1.125rem);
  --fs-sm:      .9375rem;
  --fs-xs:      .8125rem;
  --fs-2xs:     .75rem;

  --wrap: 1120px;
  --wrap-wide: 1320px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 2.75rem);
  --section-y: clamp(5.5rem, 12vw, 11rem);

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 42px;
  --r-pill: 980px;

  /* Papéis, não medidas soltas: todo cartão declara a que família pertence.
     --r-row   linhas compactas (contato, FAQ, apps, endereço)
     --r-card  cartões padrão (produto, avaliação, horários, resumo)
     --r-panel contêineres grandes (desconto, modais, visualizador) */
  --r-row: 16px;
  --r-card: 22px;
  --r-panel: 28px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ease-spring: cubic-bezier(.34, 1.32, .36, 1);
  --t-fast: .18s;
  --t-med: .4s;
  --t-slow: .8s;

  --wa: #25d366;
  --wa-ink: #04240f;          /* 10.5:1 on #25d366 — white would be 1.98:1 */

  --nav-h: 54px;
  --topbar-h: 38px;
  --z-nav: 130;
  --z-sheet: 120;
  --z-scrim: 119;
  --z-chat: 140;
  --z-fab: 90;
}

/* ------------------------------------------------------------------ DARK */
:root, [data-theme="dark"] {
  --bg:         #000000;
  --bg-1:       #09090b;
  --bg-2:       #111113;
  --surface:    #1c1c1e;      /* Apple systemGray6 dark */
  --surface-2:  #2c2c2e;      /* systemGray5 dark */
  --surface-3:  #3a3a3c;
  --line:       rgba(255,255,255,.10);
  --line-2:     rgba(255,255,255,.20);

  --text:       #f5f5f7;      /* 19.3:1 on #000 */
  --text-2:     #aeaeb2;      /* 10.4:1 on #000 · 8.7:1 on #1c1c1e */
  --text-3:     #8e8e93;      /*  6.6:1 on #000 · 5.5:1 on #1c1c1e */

  --accent:     #ff9f0a;      /* graphic fills only */
  --accent-ink: #ffab2e;      /* 11:1 on #000 · 9:1 on #1c1c1e */
  --accent-soft: rgba(255,159,10,.14);
  --link:       #2997ff;      /* 6.9:1 on #000 */

  --nav-bg:     rgba(10,10,12,.72);
  --sheet-bg:   rgba(8,8,10,.94);
  /* popover surface — immune to the nav's on-photo token overrides */
  --pop-bg:     rgba(30,30,32,.92);
  --pop-fg:     #f5f5f7;
  --pop-fg-2:   #98989d;
  --pop-line:   rgba(255,255,255,.14);
  --pop-hover:  rgba(255,255,255,.09);
  --chat-bg:    #0f1115;
  --chat-in:    #1f2229;
  --chat-out:   #075e54;

  --shadow-1:  0 1px 2px rgba(0,0,0,.4), 0 8px 26px rgba(0,0,0,.4);
  --shadow-2:  0 24px 70px rgba(0,0,0,.6);
  --card:      #1c1c1e;
  --card-line: rgba(255,255,255,.08);
  /* dark: separation comes from the lighter surface plus a top highlight —
     a drop shadow is invisible against black */
  --sheen:     rgba(255,255,255,.045);
  --spot:      rgba(255,255,255,.075);
  --card-shadow:    inset 0 1px 0 rgba(255,255,255,.055), 0 0 0 1px rgba(255,255,255,.06);
  --card-shadow-hi: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 1px rgba(255,255,255,.15), 0 18px 40px rgba(0,0,0,.5);
  /* painel em repouso: só o fio de contorno. Sem blur largo, que sobre fundo
     liso não lê como profundidade, lê como uma mancha atrás do cartão. */
  --panel-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 0 1px rgba(255,255,255,.12);
}

/* ----------------------------------------------------------------- LIGHT */
[data-theme="light"] {
  --bg:         #ffffff;
  --bg-1:       #f5f5f7;
  --bg-2:       #ececf0;
  --surface:    #ffffff;
  --surface-2:  #f0f0f3;
  --surface-3:  #e2e2e8;
  --line:       rgba(0,0,0,.10);
  --line-2:     rgba(0,0,0,.18);

  --text:       #1d1d1f;      /* 16.9:1 on #fff */
  --text-2:     #4d4d53;      /*  8.4:1 on #fff */
  --text-3:     #64646a;      /*  6.0:1 on #fff · 5.4:1 on #f5f5f7 */

  --accent:     #ff9f0a;
  --accent-ink: #8f4f00;      /* 6.4:1 on #fff · 5.3:1 on the promo chip */
  --accent-soft: rgba(255,159,10,.16);
  --link:       #0066cc;      /* 5.9:1 on #fff */

  --nav-bg:     rgba(255,255,255,.76);
  --sheet-bg:   rgba(255,255,255,.95);
  --pop-bg:     rgba(255,255,255,.94);
  --pop-fg:     #1d1d1f;
  --pop-fg-2:   #64646a;
  --pop-line:   rgba(0,0,0,.1);
  --pop-hover:  rgba(0,0,0,.055);
  --chat-bg:    #ffffff;
  --chat-in:    #f0f0f3;
  --chat-out:   #d9fdd3;

  --shadow-1:  0 1px 2px rgba(0,0,0,.04), 0 8px 26px rgba(0,0,0,.07);
  --shadow-2:  0 26px 70px rgba(0,0,0,.13);
  --card:      #ffffff;
  --card-line: rgba(0,0,0,.09);
  /* light: a white card on a white section needs real elevation, not a hairline */
  --sheen:     rgba(0,0,0,.028);
  --spot:      rgba(0,0,0,.042);
  --card-shadow:    0 0 0 1px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04), 0 12px 28px rgba(0,0,0,.06);
  --card-shadow-hi: 0 0 0 1px rgba(0,0,0,.07), 0 4px 10px rgba(0,0,0,.06), 0 22px 46px rgba(0,0,0,.1);
  /* o fio é obrigatório aqui: cartão branco sobre fundo branco some sem ele.
     O 1px de blur dá a borda, não um halo. */
  --panel-shadow: 0 0 0 1px rgba(0,0,0,.09), 0 1px 2px rgba(0,0,0,.04);
}

/* Regions that sit on photography are always dark, in either theme */
.on-dark {
  --text: #f5f5f7;
  --text-2: rgba(245,245,247,.86);
  --text-3: rgba(245,245,247,.68);
  --accent-ink: #ffab2e;
  --line: rgba(255,255,255,.16);
  --line-2: rgba(255,255,255,.3);
  --surface-2: rgba(255,255,255,.14);
  color: var(--text);
}

/* ------------------------------------------------------------- BASELINE */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  transition: background-color .5s var(--ease-out), color .5s var(--ease-out);
}
body.is-locked { overflow: hidden; }

/* Safety net: no descendant may widen the page. Rails opt out because they
   scroll on their own axis. */
main, footer, header, section { max-width: 100vw; }

img, picture, svg, iframe, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--accent); color: #1d1d1f; }

:focus-visible { outline: 2px solid var(--link); outline-offset: 3px; border-radius: 6px; }

@media (hover: none) {
  * { -webkit-tap-highlight-color: transparent; }
  a, button { touch-action: manipulation; }
}

@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar { width: 11px; height: 11px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; border: 3px solid var(--bg); }
  ::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--text); color: var(--bg);
  font-size: var(--fs-sm); font-weight: 600;
  transform: translateY(-180%); transition: transform var(--t-med) var(--ease-out);
}
.skip-link:focus { transform: none; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ PRIMITIVES */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: var(--wrap-wide); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt  { background: var(--bg-1); }

.eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 590;
  letter-spacing: .02em;
  color: var(--accent-ink);
  margin-bottom: .75rem;
}

.h2 {
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -.032em;
  font-weight: 680;
  max-width: 16ch;
  text-wrap: balance;
}
.h2--wide { max-width: 22ch; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.42;
  letter-spacing: -.014em;
  color: var(--text-2);
  max-width: 52ch;
  text-wrap: pretty;
}

.body { color: var(--text-2); max-width: 58ch; text-wrap: pretty; }

.sec-head { margin-bottom: clamp(2.75rem, 5.5vw, 5rem); }
.sec-head .h2 + .lead { margin-top: 1.25rem; }
.sec-head--center { text-align: center; }
.sec-head--center .h2, .sec-head--center .lead { margin-inline: auto; }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* One sizing scale for every icon on the site. Paint comes from the symbol:
   UI icons stroke currentColor, brand marks fill currentColor. */
.ico     { width: 20px; height: 20px; flex: none; }
.ico--xs { width: 14px; height: 14px; flex: none; }
.ico--sm { width: 17px; height: 17px; flex: none; }

/* Apple's text link: colour + chevron, no underline until hover */
.tlink {
  display: inline-flex; align-items: center; gap: .28rem;
  color: var(--link); font-size: var(--fs-sm); font-weight: 500;
  transition: opacity var(--t-fast);
}
.tlink::after { content: "›"; font-size: 1.25em; line-height: 1; transition: transform var(--t-med) var(--ease-out); }
.tlink:hover { text-decoration: underline; text-underline-offset: 3px; }
.tlink:hover::after { transform: translateX(3px); }

/* -------------------------------------------------------------- BUTTONS */
.btn {
  --btn-bg: var(--text);
  --btn-fg: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.6rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: var(--fs-sm); font-weight: 590; letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out), filter var(--t-fast), background-color var(--t-med);
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: scale(.97); transition-duration: .08s; }
.btn--lg { padding: 1.02rem 2.1rem; font-size: 1.0625rem; }
.btn--sm { padding: .5rem 1.05rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* WhatsApp: vivid green with dark ink — 10.5:1, and no template-glow */
.btn--wa { --btn-bg: var(--wa); --btn-fg: var(--wa-ink); }
.btn--wa:hover { filter: brightness(1.05); }

.btn--soft { --btn-bg: var(--surface-2); --btn-fg: var(--text); }
.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn--outline:hover { background: var(--surface-2); filter: none; }

.btn .ico { width: 18px; height: 18px; }
.btn .ico--arr { transition: transform var(--t-med) var(--ease-out); }
.btn:hover .ico--arr { transform: translateX(3px); }

.icon-btn {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--text-2);
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast) var(--ease-spring);
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); }
.icon-btn:active { transform: scale(.9); }

.round-btn {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-2); color: var(--text);
  transition: background-color var(--t-fast), transform var(--t-fast) var(--ease-spring), opacity var(--t-med);
}
.round-btn:hover { background: var(--surface-3); }
.round-btn:active { transform: scale(.9); }
.round-btn[disabled] { opacity: .32; pointer-events: none; }

/* Live open/closed dot */
.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; background: var(--text-3); }
.dot--on { background: #30d158; box-shadow: 0 0 0 0 rgba(48,209,88,.5); animation: pulse 2.4s var(--ease-out) infinite; }
.dot--off { background: #ff453a; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(48,209,88,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(48,209,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(48,209,88,0); }
}

/* ---------------------------------------------------------------- TOPBAR */
.topbar {
  position: relative; z-index: calc(var(--z-nav) + 1);
  background: var(--text); color: var(--bg);
  font-size: var(--fs-xs);
  padding-top: env(safe-area-inset-top);
}
.topbar__in {
  position: relative;
  min-height: var(--topbar-h);
  max-width: var(--wrap-wide); margin-inline: auto;
  /* recuo IGUAL dos dois lados. O × é absoluto e não ocupa espaço no fluxo,
     então só um recuo simétrico mantém a frase realmente no centro — e o do
     lado direito é o que impede o texto de correr por baixo do botão. */
  padding: .4rem calc(var(--gutter) + 28px);
  display: flex; align-items: center; justify-content: center;
}
/* um único bloco de texto: a frase e o link quebram na mesma corrente, e
   `balance` reparte as linhas em comprimentos parecidos em vez de deixar
   uma linha cheia e outra com duas palavras */
.topbar__msg { margin: 0; text-align: center; text-wrap: balance; }
.topbar b { font-weight: 640; }
.topbar__cta {
  margin-inline-start: .35rem;
  text-decoration: underline; text-underline-offset: 2px; font-weight: 590; white-space: nowrap;
}
.topbar__x {
  position: absolute; right: calc(var(--gutter) - 6px); top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
  color: inherit; opacity: .6; transition: opacity var(--t-fast), background-color var(--t-fast);
}
.topbar__x:hover { opacity: 1; background: rgba(128,128,128,.22); }
.topbar__x .ico { width: 13px; height: 13px; stroke-width: 2.2; }
html.no-topbar .topbar { display: none; }

/* ------------------------------------------------------------------- NAV */
.nav {
  position: fixed; left: 0; right: 0; top: var(--topbar-offset, 0px); z-index: var(--z-nav);
  height: var(--nav-h);
  padding-top: env(safe-area-inset-top);
  transition: background-color var(--t-med) var(--ease-out), box-shadow var(--t-med), transform var(--t-med) var(--ease-out);
}
.nav::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
  transition: opacity var(--t-med) var(--ease-out);
}
.nav.is-stuck {
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-stuck::after, .nav.is-over::after, .nav--solid::after { opacity: 0; }
.nav--solid {
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

/* Over the hero photo the bar is always light-on-dark, in either theme */
.nav:not(.is-stuck):not(.nav--solid):not(.is-over) {
  --text: #f5f5f7; --text-2: rgba(245,245,247,.8);
  --line-2: rgba(255,255,255,.3); --surface-2: rgba(255,255,255,.15); --surface-3: rgba(255,255,255,.24);
  color: var(--text);
}

.nav__inner {
  height: var(--nav-h);
  max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .55rem; margin-right: auto; }

/* The mark is a monochrome mask painted with currentColor, so it inverts with
   the theme and stays readable over the hero photo without a second asset. */
/* Logo real como <img>. Mask CSS exigiria CORS e falha ao abrir a página do
   disco; <img> não. A arte é traço BRANCO, então ela é invertida apenas onde
   o fundo é claro — sobre a foto do hero ela continua branca. */
.brand__mark {
  width: 34px; height: 34px; flex: none; object-fit: contain;
  transition: transform var(--t-med) var(--ease-spring);
}
[data-theme="light"] .nav.is-stuck .brand__mark,
[data-theme="light"] .nav--solid .brand__mark,
[data-theme="light"] .nav.is-over .brand__mark,
[data-theme="light"] .sheet .brand__mark,
[data-theme="light"] .foot .brand__mark { filter: invert(1); }
.brand:hover .brand__mark { transform: scale(1.06); }

.brand__word {
  display: flex; align-items: baseline; gap: .36em;
  font-size: .88rem; font-weight: 700; letter-spacing: .12em;
  white-space: nowrap;
}
.brand__word em { font-style: normal; font-weight: 400; letter-spacing: .15em; opacity: .68; }

/* Lockup do rodapé: marca e texto crescem juntos, para o conjunto ter peso. */
.foot .brand { gap: .8rem; align-items: center; }
.foot .brand__mark { width: 54px; height: 54px; }
.foot .brand__word { font-size: 1.16rem; letter-spacing: .1em; gap: .34em; }

.nav__links { display: flex; gap: .1rem; }
.nav__links a {
  position: relative; padding: .45rem .7rem; border-radius: var(--r-xs);
  font-size: var(--fs-xs); color: var(--text-2);
  transition: color var(--t-fast);
}
.nav__links a::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .2rem; height: 1.5px;
  border-radius: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: 50%;
  transition: transform var(--t-med) var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: .35rem; }

/* -------------------------------------------------------------- LANGUAGE */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: .3rem;
  height: 34px; padding: 0 .6rem; border-radius: var(--r-pill);
  color: var(--text-2);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.lang__btn:hover { background: var(--surface-2); color: var(--text); }

.lang__code { font-size: var(--fs-xs); font-weight: 620; letter-spacing: .01em; }

.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 182px; padding: .3rem;
  border-radius: var(--r-md);
  background: var(--pop-bg); color: var(--pop-fg);
  backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: var(--shadow-2), 0 0 0 1px var(--pop-line);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px); transform-origin: top right;
  /* mesma duração e mesma curva nas duas propriedades: sem overshoot, sem
     escala no texto — nada se acomoda depois de aparecer */
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
  will-change: transform, opacity;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: .55rem; width: 100%;
  padding: .58rem .65rem; border-radius: 10px;
  font-size: var(--fs-sm); color: var(--pop-fg); text-align: left;
  transition: background-color var(--t-fast);
}
.lang__menu button:hover { background: var(--pop-hover); }
/* Só a bandeira do idioma ativo aparece no botão. A troca é feita por CSS a
   partir de [data-lang] no <html>, então acontece no mesmo quadro da troca —
   sem JavaScript e sem um pisca entre uma bandeira e outra. */
.flag { width: 18px; height: 18px; flex: none; border-radius: 50%; }
.lang__flags { display: inline-flex; }
.lang__flags .flag { display: none; }
[data-lang="pt"] .lang__flags .flag--pt,
[data-lang="en"] .lang__flags .flag--en,
[data-lang="es"] .lang__flags .flag--es { display: block; }
.lang__menu .flag { width: 19px; height: 19px; }
.lang__menu .chk {
  width: 15px; height: 15px; margin-left: auto;
  fill: none; stroke: var(--link); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(.5);
  transition: opacity var(--t-fast), transform var(--t-med) var(--ease-spring);
}
.lang__menu button[aria-selected="true"] .chk { opacity: 1; transform: none; }

#themeBtn { display: grid; }
#themeBtn .ico { grid-area: 1/1; transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-spring); }
[data-theme="dark"]  #themeBtn .ico--moon { opacity: 0; transform: rotate(-90deg) scale(.4); }
[data-theme="dark"]  #themeBtn .ico--sun  { opacity: 1; transform: none; }
[data-theme="light"] #themeBtn .ico--sun  { opacity: 0; transform: rotate(90deg) scale(.4); }
[data-theme="light"] #themeBtn .ico--moon { opacity: 1; transform: none; }

.burger { display: none; width: 34px; height: 34px; border-radius: 50%; position: relative; }
.burger span {
  position: absolute; left: 9px; width: 16px; height: 1.6px; border-radius: 2px; background: var(--text);
  transition: transform var(--t-med) var(--ease-out);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 19px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(2.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-2.5px) rotate(-45deg); }

/* ---------------------------------------------------------- MOBILE SHEET */
.sheet {
  --nav-bg: var(--sheet-bg);
  position: fixed; inset: 0; z-index: var(--z-sheet);
  padding: calc(var(--nav-h) + env(safe-area-inset-top) + 1.75rem) var(--gutter) calc(env(safe-area-inset-bottom) + 1.75rem);
  display: flex; flex-direction: column;
  background: var(--sheet-bg);
  backdrop-filter: saturate(180%) blur(30px); -webkit-backdrop-filter: saturate(180%) blur(30px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med) var(--ease-out), visibility var(--t-med);
}
.sheet[hidden] { display: flex; }
.sheet.is-open { opacity: 1; visibility: visible; }
.sheet__nav { display: flex; flex-direction: column; }
.sheet__nav a {
  padding: .85rem .2rem;
  font-size: 1.55rem; font-weight: 620; letter-spacing: -.03em;
  box-shadow: inset 0 -1px 0 var(--line);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color var(--t-fast);
}
.sheet.is-open .sheet__nav a { opacity: 1; transform: none; }
.sheet__nav a:nth-child(1) { transition-delay: .04s; }
.sheet__nav a:nth-child(2) { transition-delay: .08s; }
.sheet__nav a:nth-child(3) { transition-delay: .12s; }
.sheet__nav a:nth-child(4) { transition-delay: .16s; }
.sheet__nav a:nth-child(5) { transition-delay: .2s; }
.sheet__nav a:nth-child(6) { transition-delay: .24s; }
.sheet__nav a:active { color: var(--accent-ink); }

.sheet__foot {
  margin-top: auto; padding-top: 1.75rem; display: grid; gap: 1rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-out) .28s, transform .5s var(--ease-out) .28s;
}
.sheet.is-open .sheet__foot { opacity: 1; transform: none; }
.sheet__status {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: var(--fs-xs); color: var(--text-2);
}
.sheet__social { display: flex; justify-content: center; gap: .5rem; }
.sheet__social a {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-2); color: var(--text);
  transition: transform var(--t-fast) var(--ease-spring);
}
.sheet__social a:active { transform: scale(.9); }

.scrim { position: fixed; inset: 0; z-index: var(--z-scrim); background: rgba(0,0,0,.4); opacity: 0; transition: opacity var(--t-med); }
.scrim.is-open { opacity: 1; }

/* ------------------------------------------------------------------ HERO */
.hero {
  /* a barra de promoção fica acima do hero: descontá-la é o que faz o bloco
     assentar no centro do que realmente se vê */
  min-height: calc(100svh - var(--topbar-offset, 0px));
  --text: #f5f5f7;
  --text-2: rgba(245,245,247,.86);
  --text-3: rgba(245,245,247,.68);
  --line-2: rgba(255,255,255,.32);
  --surface-2: rgba(255,255,255,.16);
  --accent-ink: #ffab2e;
  color: var(--text);
  position: relative; isolation: isolate; overflow: hidden;
  /* Flex com centro explícito: o bloco assenta no meio do que se vê, em
     qualquer tela. Grid com uma linha esticada não dava esse controle. */
  display: flex; align-items: center;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.hero__media img { transform: scale(1.05); will-change: transform; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.34) 30%, rgba(0,0,0,.5) 62%, rgba(0,0,0,.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55), transparent 62%);
}
.hero__content {
  width: 100%; max-width: var(--wrap-wide); margin-inline: auto;
  /* topo e base equilibrados: a barra fixa é descontada só no topo */
  padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 3.5rem;
  will-change: transform, opacity;
}

.hero__status {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .8rem .38rem .68rem; margin-bottom: 1.4rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  font-size: var(--fs-xs); font-weight: 500; color: #f5f5f7;
}

.hero__title {
  font-size: var(--fs-display);
  line-height: .93; letter-spacing: -.045em; font-weight: 680;
  margin-bottom: 1.5rem; max-width: 15ch;
  color: #f5f5f7;                      /* solid — no gradient clip */
}
.hero__title .line { display: block; }

.hero__sub {
  font-size: var(--fs-lead); line-height: 1.4; letter-spacing: -.014em;
  color: rgba(245,245,247,.88); max-width: 44ch; margin-bottom: 2.1rem;
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }

.hero__trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.16);
  max-width: 640px;
}
.hero__trust > div { display: flex; align-items: center; gap: .55rem; }
.hero__trust svg { width: 17px; height: 17px; }
.hero__trustNum { font-size: 1.02rem; font-weight: 640; letter-spacing: -.02em; color: #f5f5f7; }
.hero__trustLbl { font-size: var(--fs-xs); color: rgba(245,245,247,.72); }

.hero__scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2; opacity: .55; }
.hero__mouse { display: block; width: 23px; height: 37px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 13px; position: relative; }
.hero__mouse i {
  position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; border-radius: 2px;
  background: rgba(255,255,255,.85); transform: translateX(-50%);
  animation: wheel 2.2s var(--ease-in-out) infinite;
}
@keyframes wheel {
  0%,100% { opacity: 0; transform: translate(-50%,0); }
  22% { opacity: 1; }
  60% { opacity: 0; transform: translate(-50%,12px); }
}

/* ----------------------------------------------------------------- STARS */
.stars { display: inline-flex; gap: 1.5px; color: var(--accent-ink); }
.stars svg { width: 1em; height: 1em; fill: currentColor; stroke: none; }
.stars--gold { color: #f5a623; }
.on-dark .stars, .hero .stars { color: #ffb340; }

/* ----------------------------------------------------------------- PROMO */
.promo { position: relative; overflow: hidden; background: var(--bg); }
.promo__card {
  position: relative;
  perspective: 1100px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: clamp(1.5rem, 3.5vw, 3rem);
  padding: clamp(1.9rem, 3.6vw, 3rem);
  border-radius: var(--r-panel);
  background: var(--card);
  /* `--card-shadow-hi` é a elevação de HOVER dos outros cards. Usá-la aqui em
     repouso deixava o painel com um borrão de 46px atrás dele o tempo todo. */
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}
/* Sem brilho de fundo neste cartão: o efeito de hover aqui é o voucher que
   inclina seguindo o cursor. Somar uma luz atrás disso deixava o fundo sujo,
   e ela nem seguia o ponteiro — ficava parada num canto. */
.promo__body, .ticket { position: relative; z-index: 1; }
.promo__body { position: relative; }
.promo__tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .34rem .75rem; margin-bottom: 1rem;
  border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: var(--fs-2xs); font-weight: 640; letter-spacing: .05em; text-transform: uppercase;
}
.promo__tag .ico--xs { color: var(--accent-ink); }
.promo__title { font-size: clamp(1.6rem, 1rem + 2.3vw, 2.6rem); font-weight: 680; letter-spacing: -.032em; line-height: 1.06; max-width: 18ch; text-wrap: balance; }
.promo__text { margin-top: .85rem; color: var(--text-2); max-width: 46ch; font-size: var(--fs-sm); line-height: 1.6; }
.promo__actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* The voucher stub — a real object, not a gradient blob */
.ticket {
  --rx: 0deg; --ry: 0deg; --ly: 0px;
  position: relative; flex: none; isolation: isolate;
  width: clamp(224px, 26vw, 304px); aspect-ratio: 1/1.16;
  border-radius: var(--r-panel);
  background: var(--text); color: var(--bg);
  display: grid; place-content: center; text-align: center; gap: .15rem;
  padding: 1.9rem 1.35rem;
  transform: rotate(2.4deg);
  transition: transform .7s var(--ease-out), box-shadow .7s var(--ease-out);
  will-change: transform;
}

/* enquanto o ponteiro percorre o cartão, o voucher acompanha em 3D */
.ticket.is-live {
  transform: rotate3d(1, 0, 0, var(--rx)) rotate3d(0, 1, 0, var(--ry)) translateY(var(--ly)) scale(1.045);
  transition: transform .18s var(--ease-out), box-shadow .5s var(--ease-out);
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, .55);
}

/* Sem brilho de hover aqui. O voucher é sempre o inverso do tema, então um
   brilho branco desaparecia no tema escuro (voucher branco) e virava um clarão
   no claro (voucher preto) — o mesmo efeito lia completamente diferente nos
   dois. O hover deste bloco é a inclinação 3D, que funciona igual nos dois. */

/* borda perfurada, como um cupom de verdade */
.ticket::after {
  content: ""; position: absolute; inset: .55rem; z-index: 1; pointer-events: none;
  border-radius: calc(var(--r-panel) - .5rem);
  border: 1px dashed currentColor; opacity: .22;
}
/* os recortes de picote vivem em spans próprios: os pseudo-elementos do
   .ticket já carregam o brilho e o picote tracejado */
.ticket__notch {
  position: absolute; left: 50%; z-index: 3;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--card); transform: translateX(-50%);
}
.ticket__notch--t { top: -14px; }
.ticket__notch--b { bottom: -14px; }
/* o voucher é sempre o inverso do tema, então a inversão também inverte */
.ticket__mark { width: 74px; height: 74px; margin: 0 auto 1.05rem; object-fit: contain; opacity: .94; }
[data-theme="dark"] .ticket__mark { filter: invert(1); }
.ticket__off {
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.85rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.05;
  max-width: 8ch; margin-inline: auto; text-wrap: balance;
}
.ticket__rule { width: 58px; height: 1px; background: currentColor; opacity: .28; margin: 1rem auto .85rem; }
.ticket__code { font-size: .95rem; font-weight: 500; letter-spacing: -.005em; opacity: .78; line-height: 1.4; }

/* -------------------------------------------------------------- PRODUCTS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 1.5vw, 1.4rem); }

.card {
  position: relative; isolation: isolate;
  padding: clamp(1.55rem, 2.2vw, 2rem);
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
/* O corte em 60% deixava um anel visível quando o cursor chegava perto da
   borda. Indo até 100%, a luz apaga sozinha e não desenha aresta nenhuma. */
.card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), var(--spot), transparent 100%);
  opacity: 0; transition: opacity .45s var(--ease-out);
}
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hi); }
.card:hover::after { opacity: 1; }
.card:hover .card__ico { transform: translateY(-2px) scale(1.08); }
.card__ico { transition: transform var(--t-med) var(--ease-spring), color var(--t-med); }

/* the same treatment on the other card surfaces */
.rev, .irow, .faq__item { position: relative; }
.usp { transition: transform var(--t-med) var(--ease-out); }
.usp:hover { transform: translateY(-3px); }
.usp:hover .usp__n { color: var(--accent-ink); border-color: var(--accent-ink); }
.usp__n { transition: color var(--t-med), border-color var(--t-med); }

.card__ico { width: 30px; height: 30px; margin-bottom: 1.15rem; color: var(--accent-ink); }
.card__ico svg { width: 100%; height: 100%; }
.card__title { font-size: var(--fs-h3); font-weight: 620; letter-spacing: -.026em; margin-bottom: .5rem; text-wrap: balance; }
.card__text { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6; text-wrap: pretty; }

/* -------------------------------------------------------------- WHY / USP */
.why { background: var(--bg); }
.products { background: var(--bg-1); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 3.4vw, 3.25rem) clamp(1.5rem, 3vw, 3rem); }
.usp { display: flex; flex-direction: column; gap: .55rem; }
.usp__n {
  font-size: var(--fs-2xs); font-weight: 660; letter-spacing: .1em;
  color: var(--text-3); font-variant-numeric: tabular-nums;
  padding-bottom: .7rem; border-bottom: 1px solid var(--line);
  margin-bottom: .35rem;
}
.usp__t { font-size: 1.09rem; font-weight: 620; letter-spacing: -.022em; text-wrap: balance; }
.usp__d { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6; text-wrap: pretty; }

/* --------------------------------------------------------------- GALLERY */
.gallery { background: var(--bg-1); }
.rail {
  display: flex; gap: clamp(.9rem, 1.5vw, 1.35rem);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-block: .4rem 1.4rem;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail__pad { flex: none; width: calc((100vw - min(var(--wrap-wide), 100vw - var(--gutter) * 2)) / 2); min-width: var(--gutter); }
.shot {
  flex: none; width: min(44vw, 540px);
  scroll-snap-align: center;
  border-radius: var(--r-card); overflow: hidden; position: relative;
  background: var(--surface);
}
.shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.6rem 1.25rem 1.05rem;
  font-size: var(--fs-sm); font-weight: 550; letter-spacing: -.014em; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.rail__dots { display: none; justify-content: center; gap: .35rem; margin-top: .2rem; }
.rail__dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); transition: width var(--t-med) var(--ease-out), background-color var(--t-med); }
.rail__dots i.is-on { width: 18px; background: var(--accent); }
.gallery__ctrl { display: flex; gap: .45rem; }

/* ------------------------------------------------------------------ NEWS */
.news__grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.news__frame {
  border-radius: var(--r-card); overflow: hidden; position: relative;
  box-shadow: var(--shadow-2);
  transition: transform var(--t-slow) var(--ease-out);
}
.news__art:hover .news__frame { transform: translateY(-5px); }
.news__source { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: var(--fs-xs); color: var(--text-3); }
.news__copy .btn, .news__copy .tlink { margin-top: 1.9rem; }

/* --------------------------------------------------------------- REVIEWS */
.reviews { background: var(--bg); }
.gsum {
  display: flex; align-items: center; justify-content: center; gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap; margin-top: 1.9rem;
  padding: 1.15rem 1.6rem;
  border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--card-shadow);
}
.gsum__score { display: flex; align-items: center; gap: .7rem; }
.gsum__num { font-size: 2rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.gsum__meta { font-size: var(--fs-xs); color: var(--text-2); }
.gsum__g { display: flex; align-items: center; gap: .45rem; font-size: var(--fs-xs); color: var(--text-2); }
.gsum__g svg { width: 16px; height: 16px; flex: none; }
.gsum__sep { width: 1px; height: 30px; background: var(--line); }

.reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.5vw, 1.35rem); align-items: stretch; }
.rev {
  padding: 1.55rem;
  border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--card-shadow);
  display: flex; flex-direction: column; gap: .85rem;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.rev:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hi); }
.rev__top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.rev__stars { font-size: .84rem; }
.rev__g { width: 16px; height: 16px; flex: none; opacity: .9; }
.rev__text { font-size: var(--fs-sm); line-height: 1.62; color: var(--text); text-wrap: pretty; }
.rev__who { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: .35rem; }
.rev__av {
  width: 34px; height: 34px; border-radius: 50%; flex: none; overflow: hidden;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--text);   /* 8.4:1 — was 1.1:1 dark-on-amber */
  font-size: .78rem; font-weight: 640;
}
.rev__av img { width: 100%; height: 100%; object-fit: cover; }
.rev__name { display: block; font-size: var(--fs-xs); font-weight: 590; line-height: 1.3; }
.rev__when { display: block; font-size: var(--fs-2xs); color: var(--text-3); line-height: 1.3; }
.reviews__more { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ----------------------------------------------------------------- VISIT */
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }

.hours { border-radius: var(--r-card); background: var(--card); box-shadow: var(--card-shadow); overflow: hidden; }
.hours__head {
  display: flex; align-items: center; gap: .55rem;
  padding: 1.1rem 1.35rem; box-shadow: inset 0 -1px 0 var(--line);
  font-size: var(--fs-sm); font-weight: 590;
}
.hours__list { padding: .5rem .35rem .8rem; }
.hours__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .5rem 1rem; border-radius: 10px;
  font-size: var(--fs-sm); color: var(--text-2);
}
.hours__row.is-today { background: var(--surface-2); color: var(--text); font-weight: 590; }
.hours__row dt { text-transform: capitalize; }
.hours__row dd { font-variant-numeric: tabular-nums; margin: 0; }
.hours__row.is-closed dd { color: var(--text-3); }

.info { display: grid; gap: .7rem; margin-top: 1rem; }
.irow {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.05rem 1.2rem; border-radius: var(--r-row);
  background: var(--card); box-shadow: var(--card-shadow);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med);
}
.irow:hover { transform: translateX(3px); box-shadow: var(--card-shadow-hi); }
.irow__ico { width: 20px; height: 20px; color: var(--text-3); flex: none; }
.irow__b { min-width: 0; flex: 1; }
.irow__l { display: block; font-size: var(--fs-2xs); color: var(--text-3); }
.irow__v { display: block; font-size: var(--fs-sm); font-weight: 550; letter-spacing: -.014em; line-height: 1.35; text-wrap: pretty; }
.irow__go { color: var(--link); font-size: 1.1rem; line-height: 1; }

.map { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--card-shadow); height: clamp(300px, 40vw, 460px); background: var(--surface); position: relative; }
.map iframe { width: 100%; height: 100%; border: 0; position: relative; z-index: 1; }
.map::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--surface) 30%, var(--surface-2) 50%, var(--surface) 70%);
  background-size: 220% 100%; animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }
[data-theme="dark"] .map iframe { filter: invert(.92) hue-rotate(180deg) saturate(.8) brightness(.95); }

/* ---------------------------------------------------------------- CLOSER */
.closer { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(6rem, 14vw, 12rem); text-align: center; }
.closer__bg { position: absolute; inset: 0; z-index: -2; }
.closer__bg img { width: 100%; height: 100%; object-fit: cover; }
.closer__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.7)); }
.closer__quote {
  font-size: clamp(2rem, 1rem + 3.8vw, 4.25rem);
  font-weight: 680; letter-spacing: -.04em; line-height: 1.03;
  max-width: 15ch; margin: 0 auto 1.4rem; color: #f5f5f7; text-wrap: balance;
}
.closer__sub { color: rgba(245,245,247,.82); max-width: 44ch; margin: 0 auto 2.4rem; font-size: var(--fs-lead); text-wrap: pretty; }
.closer__actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------- FOOTER */
.foot {
  background: var(--bg-1); box-shadow: inset 0 1px 0 var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  font-size: var(--fs-sm);
}
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.foot__tag { margin-top: .9rem; color: var(--text-2); font-size: var(--fs-xs); max-width: 26ch; }
.foot__social { display: flex; gap: .45rem; margin-top: 1.3rem; }
.foot__social .ico, .sheet__social .ico { width: 18px; height: 18px; }
.foot__social a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2); color: var(--text-2);
  transition: color var(--t-fast), transform var(--t-fast) var(--ease-spring);
}
.foot__social a:hover { color: var(--text); transform: translateY(-2px); }
.foot__col { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.foot__col h3 { font-size: var(--fs-2xs); font-weight: 640; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); margin-bottom: .3rem; }
.foot__col a, .foot__col p { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.5; transition: color var(--t-fast); }
.foot__col a:hover { color: var(--text); }
.foot__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.4rem; box-shadow: inset 0 1px 0 var(--line);
  font-size: var(--fs-2xs); color: var(--text-3);
}
.foot__legal a:hover { color: var(--text); }

/* ============================================================ WHATSAPP UI */
.walaunch {
  position: fixed; z-index: var(--z-fab);
  right: max(var(--gutter), 1.15rem);
  bottom: calc(1.15rem + env(safe-area-inset-bottom));
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: var(--wa-ink);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform var(--t-slow) var(--ease-spring), opacity var(--t-med);
}
.js .walaunch { transform: scale(.4); opacity: 0; pointer-events: none; }
.js .walaunch.is-in { transform: none; opacity: 1; pointer-events: auto; }
.walaunch:hover { transform: scale(1.06); }
.walaunch:active { transform: scale(.93); }
.walaunch__wa { width: 29px; height: 29px; }
.walaunch__x { width: 24px; height: 24px; }
.walaunch__x { position: absolute; opacity: 0; transform: rotate(-90deg) scale(.5); transition: opacity var(--t-fast), transform var(--t-med) var(--ease-spring); }
.walaunch__wa { transition: opacity var(--t-fast), transform var(--t-med) var(--ease-spring); }
.walaunch.is-active .walaunch__x { opacity: 1; transform: none; }
.walaunch.is-active .walaunch__wa { opacity: 0; transform: rotate(90deg) scale(.5); }
.walaunch__badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 99px;
  background: #ff3b30; color: #fff;
  font-size: .7rem; font-weight: 700; line-height: 20px; text-align: center;
  box-shadow: 0 0 0 2.5px var(--bg);
  transform: scale(0); transition: transform var(--t-med) var(--ease-spring);
}
.walaunch__badge.is-on { transform: scale(1); }

/* Teaser bubble */
.wateaser {
  position: fixed; z-index: var(--z-fab);
  right: max(var(--gutter), 1.15rem);
  bottom: calc(5.4rem + env(safe-area-inset-bottom));
  max-width: min(268px, calc(100vw - 2.5rem));
  padding: .85rem 2.6rem .85rem 1rem;
  border-radius: 18px 18px 4px 18px;
  background: var(--card); color: var(--text);
  box-shadow: var(--shadow-2), 0 0 0 1px var(--card-line);
  font-size: var(--fs-xs); line-height: 1.45;
  opacity: 0; transform: translateY(10px); transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .26s var(--ease-out), transform .26s var(--ease-out);
}
.wateaser.is-in { opacity: 1; transform: none; pointer-events: auto; }
.wateaser b { display: block; font-weight: 620; margin-bottom: .12rem; }
.wateaser__x {
  position: absolute; top: 6px; right: 6px; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%; color: var(--text-3);
  transition: background-color var(--t-fast);
}
.wateaser__x:hover { background: var(--surface-2); }

/* Chat panel */
.chat {
  position: fixed; z-index: var(--z-chat);
  right: max(var(--gutter), 1.15rem);
  bottom: calc(5.6rem + env(safe-area-inset-bottom));
  width: min(374px, calc(100vw - 2rem));
  border-radius: var(--r-panel); overflow: hidden;
  background: var(--chat-bg);
  box-shadow: var(--shadow-2), 0 0 0 1px var(--card-line);
  opacity: 0; visibility: hidden;
  transform: translateY(14px); transform-origin: bottom right;
  transition: opacity .26s var(--ease-out), transform .26s var(--ease-out), visibility .26s;
}
.chat.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.chat__head {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1rem; background: #075e54; color: #fff;
}
/* Círculo claro com a marca monocromática em preto. Antes ficava aqui o badge
   COLORIDO recebendo invert(1), o que embaralhava as cores dele. */
.chat__av {
  position: relative; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.18);
  display: grid; place-items: center;
}
.chat__av img {
  width: 28px; height: 28px; object-fit: contain;
  filter: invert(1);                 /* traço branco → preto sobre o círculo */
}
/* status na quina, fora da marca, com anel na cor do cabeçalho */
.chat__av i {
  position: absolute; right: -1px; bottom: -1px;
  width: 13px; height: 13px; border-radius: 50%;
  background: #30d158; box-shadow: 0 0 0 2.5px #075e54;
}
.chat__av i.is-off { background: #8e8e93; }
.chat__who { min-width: 0; flex: 1; }
.chat__who { min-width: 0; flex: 1; }
.chat__name {
  display: block; font-size: var(--fs-sm); font-weight: 620; letter-spacing: -.012em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.chat__state {
  display: block; font-size: var(--fs-2xs); opacity: .88; line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

@media (max-width: 420px) {
  .chat__head { padding: .8rem .85rem; gap: .6rem; }
  .chat__av { width: 40px; height: 40px; }
  .chat__av img { width: 25px; height: 25px; }
  .chat__state { font-size: .68rem; }
}
.chat__x { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; opacity: .82; transition: background-color var(--t-fast); }
.chat__x:hover { background: rgba(255,255,255,.16); }
.chat__x .ico { width: 15px; height: 15px; stroke-width: 2.2; }

.chat__body {
  padding: 1rem .9rem .5rem;
  min-height: 210px; max-height: min(46vh, 340px); overflow-y: auto;
  display: flex; flex-direction: column; gap: .5rem;
  background:
    radial-gradient(circle at 18% 22%, rgba(128,128,128,.055) 0 2px, transparent 2px),
    radial-gradient(circle at 62% 68%, rgba(128,128,128,.055) 0 2px, transparent 2px);
  background-size: 46px 46px;
  scrollbar-width: thin;
}
.bub {
  max-width: 84%; padding: .6rem .8rem; border-radius: 14px;
  background: var(--chat-in); color: var(--text);
  font-size: var(--fs-xs); line-height: 1.48;
  align-self: flex-start; border-bottom-left-radius: 4px;
  opacity: 0; transform: translateY(8px) scale(.96);
  animation: bubIn .42s var(--ease-spring) forwards;
}
.bub b { font-weight: 640; }
.bub--me { align-self: flex-end; background: var(--chat-out); border-radius: 14px 14px 4px 14px; }
[data-theme="light"] .bub--me { color: #0b2e19; }
[data-theme="dark"] .bub--me { color: #eaf7f4; }
.bub__time { display: block; margin-top: .2rem; font-size: .625rem; opacity: .55; text-align: right; }
@keyframes bubIn { to { opacity: 1; transform: none; } }

.typing { display: inline-flex; gap: 3px; align-items: center; padding: .72rem .85rem; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: blink 1.3s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%,60%,100% { opacity: .28; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

.chat__quick { display: flex; flex-wrap: wrap; gap: .38rem; padding: .3rem .9rem .2rem; }
.chat__quick button {
  padding: .42rem .8rem; border-radius: var(--r-pill);
  background: transparent; color: var(--link);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: var(--fs-2xs); font-weight: 550;
  opacity: 0; transform: translateY(6px);
  animation: bubIn .4s var(--ease-out) forwards;
  transition: background-color var(--t-fast);
}
.chat__quick button:hover { background: var(--surface-2); }

.chat__foot { padding: .7rem .9rem calc(.9rem + env(safe-area-inset-bottom)); box-shadow: inset 0 1px 0 var(--line); }
.chat__note { display: block; margin-top: .5rem; font-size: .625rem; color: var(--text-3); text-align: center; }

/* ------------------------------------------------------------------- FAQ */
.faq__list { max-width: var(--wrap-narrow); margin-inline: auto; display: grid; gap: .7rem; }
.faq__item {
  border-radius: var(--r-row);
  background: var(--card); box-shadow: var(--card-shadow);
  overflow: hidden;
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem; cursor: pointer; list-style: none;
  font-size: 1.02rem; font-weight: 590; letter-spacing: -.018em;
  transition: background-color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--surface-2); }
.faq__item summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t-med) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__item p {
  padding: .2rem 1.35rem 1.35rem;
  margin-right: 2.4rem;                 /* clear of the chevron */
  color: var(--text-2); font-size: var(--fs-sm); line-height: 1.72;
  text-wrap: pretty;
}
.faq__item[open] summary { padding-bottom: .75rem; }

/* ----------------------------------------------------------------- INTRO */
.intro {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--bg);
  animation: introOut .78s var(--ease-out) 1.35s forwards;
}
.intro__inner { display: grid; justify-items: center; gap: 1.9rem; }

/* o logo real, grande o bastante para os traços finos aparecerem */
.intro__mark {
  width: 108px; height: 108px; object-fit: contain;
  animation: markIn .9s var(--ease-out) both;
}
[data-theme="light"] .intro__mark { filter: invert(1); }

/* uma linha fina que preenche uma vez — sem barras saltitantes */
.intro__bar {
  display: block; width: 150px; height: 2px; border-radius: 2px;
  background: var(--line-2); overflow: hidden;
  animation: markIn .7s var(--ease-out) .1s both;
}
.intro__bar i {
  display: block; height: 100%; width: 100%; border-radius: inherit;
  background: var(--text);
  transform: scaleX(0); transform-origin: 0 50%;
  animation: barFill 1.15s var(--ease-out) .12s forwards;
}
@keyframes barFill { to { transform: scaleX(1); } }
@keyframes markIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes introOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-1.25%); }
}

/* the hero settles in behind the curtain as it lifts */
.js .hero__content { animation: heroIn 1.05s var(--ease-out) 1.42s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------- REVEALS */
html:not(.js) .intro { display: none; }

.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 80ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------- LANGUAGE CROSS-FADE */
/* Native cross-fade where supported. The old build dimmed + blurred every
   node for one frame, which read as a flicker; this dissolves instead. */
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .34s; animation-timing-function: cubic-bezier(.16,1,.3,1); }
::view-transition-old(root) { animation-name: vtOut; }
::view-transition-new(root) { animation-name: vtIn; }
@keyframes vtOut { to { opacity: 0; } }
@keyframes vtIn { from { opacity: 0; } }

/* Fallback: a gentle settle on the text that changed, never a page-wide flash */
.i18n-fade [data-i18n], .i18n-fade [data-i18n-html] {
  animation: i18nSettle .46s var(--ease-out) both;
}
@keyframes i18nSettle {
  from { opacity: .55; transform: translateY(2px); }
  to   { opacity: 1; transform: none; }
}

/* ================================================================= MEDIA */
@media (max-width: 1100px) {
  .nav__links a { padding-inline: .5rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .news__grid, .visit__grid { grid-template-columns: 1fr; }
  .news__art { order: 2; max-width: 400px; }
  .promo__card { grid-template-columns: 1fr; justify-items: start; }
  .ticket { transform: rotate(-1.5deg); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
  .shot { width: min(74vw, 440px); }
  /* o hero centra o bloco no espaço livre em vez de encostá-lo na base */
  .hero { display: flex; align-items: center; }
  .hero__content {
    width: 100%;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top) + 1.5rem);
    padding-bottom: 4rem;
  }
}

/* Tablets and large phones */
@media (max-width: 820px) {
  :root { --section-y: clamp(4rem, 10vw, 6rem); }
  .visit__grid { gap: 1.5rem; }
  .gsum { padding: 1rem 1.2rem; }
  .promo__card { gap: 2rem; }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 50px;
    --gutter: 1.15rem;
    --section-y: 3.25rem;
  }
  .section--tight { padding-block: 2.5rem; }
  .sec-head { margin-bottom: 1.75rem; }
  .sec-head .h2 + .lead { margin-top: .85rem; }
  .cards { gap: .7rem; }
  .card { padding: 1.35rem 1.25rem; }
  .why__grid { gap: 1.5rem 1rem; }
  .usp { gap: .4rem; }
  .usp__n { padding-bottom: .5rem; margin-bottom: .2rem; }
  .reviews__grid { gap: .7rem; }
  .rev { padding: 1.25rem; }
  .faq__list { gap: .55rem; }
  .info { gap: .5rem; }
  .closer { padding-block: 4.5rem; }
  .foot { padding-top: 2.5rem; }
  .foot__grid { padding-bottom: 1.75rem; gap: 1.5rem; }
  /* o recuo horizontal é o mesmo do desktop de propósito: `+28px` é o alcance
     do × para dentro (right: gutter−12 + 40 de alvo). Reservar menos que isso
     faria um toque no fim da frase cair no botão e fechar a barra. */
  .topbar__in { font-size: var(--fs-2xs); padding-block: .5rem; }
  .topbar__msg { line-height: 1.38; }
  .cards, .why__grid, .reviews__grid { grid-template-columns: 1fr; }
  /* Centralização real: com display:grid e uma única linha esticada o bloco
     não assentava no meio. Flex torna o eixo vertical explícito. */
  .hero { display: flex; align-items: center; }
  .hero__content {
    width: 100%;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top) + 1rem);
    padding-bottom: 3.25rem;
  }
  .hero__title { margin-bottom: 1.15rem; }
  .hero__sub { margin-bottom: 1.6rem; }
  .hero__status { margin-bottom: 1.1rem; }
  .hero__trust { margin-top: 1.6rem; padding-top: 1.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 1rem 1.4rem; }
  .sec-head--row { flex-direction: column; align-items: flex-start; }
  .gallery__ctrl { display: none; }
  .rail__dots { display: flex; }
  .shot { width: 82vw; }
  .rail__pad { min-width: max(var(--gutter), 8vw); }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__col:last-child { grid-column: 1 / -1; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .gsum { flex-direction: column; gap: .75rem; }
  .gsum__sep { display: none; }
  .promo__actions .btn { width: 100%; }
  .chat { right: .7rem; left: .7rem; width: auto; bottom: calc(5.1rem + env(safe-area-inset-bottom)); }
  .chat__body { max-height: min(42vh, 300px); }
  .wateaser { bottom: calc(5rem + env(safe-area-inset-bottom)); left: auto; max-width: min(250px, calc(100vw - 5.5rem)); }
  .walaunch { width: 54px; height: 54px; }
  .walaunch__wa { width: 27px; height: 27px; }

  /* the promo ticket is decorative — it must not shove the copy around */
  .promo__card { justify-items: stretch; }
  .ticket { width: 100%; max-width: 300px; margin-inline: auto; aspect-ratio: 1/.78; transform: none; padding: 1.6rem 1.2rem; }
  .promo__actions { width: 100%; }
  .promo__actions .tlink { justify-content: center; width: 100%; }

  .hours__row { padding-inline: .8rem; font-size: var(--fs-xs); }
  .hero__trust { gap: .85rem 1.25rem; padding-top: 1.25rem; margin-top: 1.9rem; }
  .hero__trust > div { gap: .4rem; }
  .irow { padding: .95rem 1rem; gap: .75rem; }
  .btn--lg { padding: .95rem 1.6rem; font-size: 1rem; }
  .sec-head { margin-bottom: 2.25rem; }
  .news__art { max-width: 100%; }
  .foot__social a, .sheet__social a { width: 44px; height: 44px; }
}

/* Small phones — keep everything inside the viewport and comfortably tappable */
@media (max-width: 400px) {
  :root { --gutter: 1rem; }
  /* A barra não empilha mais em coluna aqui: era o que a fazia chegar a 91px
     num aparelho de 320px, quase um quarto da tela antes mesmo do menu. Duas
     linhas equilibradas cabem bem, então a regra base dá conta sozinha. */
  .hero__status { font-size: var(--fs-2xs); padding: .34rem .7rem .34rem .6rem; }
  .hero__title { letter-spacing: -.04em; }
  .gsum__num { font-size: 1.75rem; }
  .ticket__pct { font-size: 2.9rem; }
  .chat { right: .55rem; left: .55rem; }
  .wateaser { right: .55rem; max-width: calc(100vw - 5rem); }
}

@media (max-width: 400px) {
  .brand__mark { width: 28px; height: 28px; }
  .brand { gap: .4rem; }
}

@media (max-width: 360px) {
  .brand__word { font-size: .74rem; letter-spacing: .07em; }
  .brand__text em { display: none; }
  .lang__code { display: none; }
  .lang__btn { padding-inline: .4rem; }
  .nav__actions { gap: .15rem; }
}

@media (hover: none) {
  .card:hover, .rev:hover, .irow:hover { transform: none; box-shadow: inset 0 0 0 1px var(--card-line); }
  .card:active, .irow:active { transform: scale(.99); }
  .shot:hover img, .news__art:hover .news__frame, .promo__card:hover .ticket { transform: none; }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 580px; }
  .hero__scroll { display: none; }
}

@media (min-width: 1600px) { :root { --wrap: 1200px; --wrap-wide: 1400px; } }

/* ------------------------------------------------------- REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .walaunch { opacity: 1; transform: none; pointer-events: auto; }
  .intro { display: none; }
  .js .hero__content { animation: none; }
  .bub, .chat__quick button { opacity: 1; transform: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ------------------------------------------------------------ LEGAL PAGE */
.legal { padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5.5rem)); padding-bottom: clamp(4rem, 8vw, 7rem); }
.legal__wrap { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 550; color: var(--link); margin-bottom: 2rem; }
.legal__back:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal__back svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-med) var(--ease-out); }
.legal__back:hover svg { transform: translateX(-3px); }
.legal h1 { font-size: clamp(2.1rem, 1.3rem + 3vw, 3.4rem); font-weight: 680; letter-spacing: -.038em; line-height: 1.03; margin-bottom: .8rem; text-wrap: balance; }
.legal__meta { font-size: var(--fs-xs); color: var(--text-3); margin-bottom: 2.4rem; }
.legal__intro { font-size: var(--fs-lead); color: var(--text-2); line-height: 1.48; letter-spacing: -.014em; text-wrap: pretty; }
.legal__intro + .legal__intro { margin-top: 1rem; }
.legal section { margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.legal h2 { font-size: clamp(1.2rem, 1.05rem + .75vw, 1.55rem); font-weight: 620; letter-spacing: -.026em; margin-bottom: .85rem; display: flex; gap: .65rem; align-items: baseline; }
.legal h2 i { font-style: normal; color: var(--accent-ink); font-variant-numeric: tabular-nums; font-size: .88em; }
.legal p { color: var(--text-2); line-height: 1.65; text-wrap: pretty; }
.legal p + p, .legal ul + p { margin-top: .85rem; }
.legal ul { margin-top: .85rem; display: grid; gap: .45rem; }
.legal ul li { position: relative; padding-left: 1.35rem; color: var(--text-2); font-size: var(--fs-sm); line-height: 1.55; }
.legal ul li::before { content: ""; position: absolute; left: .3rem; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.legal blockquote {
  margin: 1.3rem 0 0; padding: 1.1rem 1.35rem; border-radius: var(--r-row);
  background: var(--surface-2); box-shadow: inset 3px 0 0 var(--accent);
  color: var(--text); font-size: var(--fs-sm); line-height: 1.6;
}
.legal__cta {
  margin-top: clamp(3rem, 6vw, 4.5rem); padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: var(--r-card); background: var(--card); box-shadow: var(--card-shadow);
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap;
}
.legal__cta p { margin: 0; }
.legal__cta strong { display: block; color: var(--text); font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: .2rem; }

/* ====================================================== TOUCH TARGETS
   Measured across 15 viewports: several controls rendered under 32px on
   touch layouts (promo-bar close at 26px, language button at 30px wide,
   text links at 19–23px tall). Desktop keeps its tighter density; pointer-
   coarse devices get comfortable targets without changing the visual size. */
@media (hover: none), (max-width: 820px) {
  .topbar__x { width: 40px; height: 40px; right: calc(var(--gutter) - 12px); }
  /* 40px de alvo sem engordar a barra: o link vive dentro da frase, então o
     padding é anulado por uma margem negativa igual. Num inline-block é a
     caixa de MARGEM que conta para a altura da linha — a linha continua com
     16px enquanto a área tocável fica com 40px. É a própria caixa do elemento,
     não uma sobreposição, então uma auditoria de alvos mede o valor real. */
  .topbar__cta { display: inline-block; padding: .75rem .3rem; margin-block: -.75rem; }
  .brand { padding-block: .45rem; }
  .lang__btn { min-width: 42px; height: 40px; justify-content: center; }
  .icon-btn { width: 40px; height: 40px; }
  .burger { width: 40px; height: 40px; }
  .burger span { left: 12px; }
  .burger span:nth-child(1) { top: 17px; }
  .burger span:nth-child(2) { top: 22px; }
  .tlink { padding-block: .55rem; }
  /* footer links become full-width rows so the tap area matches the column,
     not just the width of a short word like "Início" */
  .foot__col { align-items: stretch; }
  .foot__col a { display: block; padding-block: .45rem; }
  .foot__legal a { display: inline-block; padding-block: .45rem; }
  .faq__item summary { padding-block: 1.15rem; }
  .rail__dots { padding-block: .5rem; }
  .wateaser__x { width: 40px; height: 40px; top: 2px; right: 2px; }
  .chat__x { width: 38px; height: 38px; }
  .chat__quick button { padding-block: .6rem; }
  .hours__row { padding-block: .62rem; }
}

/* ================================================== ICON SIZE SCALE (final)
   Seven sizes, nothing in between:
   13 stars · 14 inline/close · 16 brand marks · 18 buttons & socials
   20 default UI · 28 chat launcher · 30 product cards                     */
.topbar__x .ico,
.wateaser__x .ico { width: 14px; height: 14px; }
.lang__btn .ico   { width: 18px; height: 18px; }
.walaunch__wa     { width: 28px; height: 28px; }


/* ======================================================= SCROLL-LINKED MOTION
   Native scroll-driven animations (Chrome/Edge 115+). No JS, no scroll
   listener, and because they are bound to scroll position they play forwards
   on the way down and backwards on the way up. Absent elsewhere — nothing
   depends on them. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .shot img {
      animation: driftY linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes driftY {
      from { transform: scale(1.1) translateY(-2.4%); }
      to   { transform: scale(1.1) translateY(2.4%); }
    }

    .news__frame img {
      animation: driftSlow linear both;
      animation-timeline: view();
      animation-range: entry 10% exit 90%;
    }
    @keyframes driftSlow {
      from { transform: scale(1.08) translateY(-1.8%); }
      to   { transform: scale(1.08) translateY(1.8%); }
    }

    .closer__bg img {
      animation: driftSlow linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    /* section headings lift slightly as they come into range */
    .sec-head .h2 {
      animation: liftIn linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 62%;
    }
    @keyframes liftIn {
      from { transform: translateY(16px); }
      to   { transform: none; }
    }

    /* the promo ticket rocks a little as it passes */
    .ticket {
      animation: tiltPass linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes tiltPass {
      from { transform: rotate(4deg) translateY(10px); }
      to   { transform: rotate(-3deg) translateY(-10px); }
    }
  }
}

/* the rail images need the transform origin fixed so drift + hover agree */
.shot img { transform-origin: 50% 50%; }


/* ==================================================== MOBILE ACTION DOCK */
.dock {
  position: fixed; z-index: var(--z-fab);
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: .5rem;
  padding: .6rem max(var(--gutter), .9rem) calc(.6rem + env(safe-area-inset-bottom));
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 -1px 0 var(--line);
  transform: translateY(120%);
  transition: transform .42s var(--ease-out);
}
.dock.is-in { transform: none; }
.dock.is-away { transform: translateY(120%); }
.dock__btn {
  flex: 1 1 0; min-width: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  height: 48px; padding: 0 .9rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out);
}
.dock__btn:active { transform: scale(.96); }
.dock__btn--wa { flex: 1.5 1 0; background: var(--wa); color: var(--wa-ink); }
.dock__btn--ghost { background: var(--surface-2); color: var(--text); }
.dock__btn .ico { width: 18px; height: 18px; }

@media (max-width: 820px) {
  .dock { display: flex; }
  /* the round launcher would double up with the dock */
  .walaunch { display: none; }
  .wateaser { bottom: calc(4.9rem + env(safe-area-inset-bottom)); }
  .chat { bottom: calc(4.9rem + env(safe-area-inset-bottom)); }
  /* keep the last band clear of the dock */
  .foot { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

/* ============================================ NATIVE-APP SCROLL BEHAVIOUR */
@media (max-width: 820px) {
  /* the bar retracts as you read down and comes back the moment you scroll up */
  .nav.is-hidden { transform: translateY(-120%); }
  .nav { will-change: transform; }

  /* each band snaps its heading into place like a native list section */
  .sec-head .h2 { text-wrap: balance; }

  /* cards get a press state instead of a hover state */
  .card:active, .rev:active, .faq__item summary:active { transform: scale(.985); }
  .card, .rev { transition: transform .16s var(--ease-out), box-shadow var(--t-med); }
}

/* Scroll-linked card entrance on phones: each card rises as it enters,
   driven by the compositor rather than a scroll listener. */
@supports (animation-timeline: view()) {
  @media (max-width: 820px) and (prefers-reduced-motion: no-preference) {
    .card, .rev, .usp, .irow, .faq__item {
      animation: cardRise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 46%;
    }
    @keyframes cardRise {
      from { opacity: 0; transform: translateY(26px) scale(.97); }
      to   { opacity: 1; transform: none; }
    }
    /* the reveal observer would fight the scroll animation */
    .js .card.reveal, .js .rev.reveal, .js .usp.reveal,
    .js .irow.reveal, .js .faq__item.reveal { opacity: 1; transform: none; }
  }
}


/* ------------------------------------------------------- UTILITÁRIOS
   Existem para que nenhum atributo style= sobre no HTML — sem eles a CSP
   precisaria de style-src 'unsafe-inline'. */
.u-mt-1  { margin-top: 1rem; }
.u-mt-2  { margin-top: 1.9rem; }
.u-no-border-top { box-shadow: none !important; }

/* ================================================================== 404 */
.notfound {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: var(--gutter);
  text-align: center;
}
.notfound__inner { max-width: 38ch; display: grid; justify-items: center; gap: .5rem; }
.notfound__mark { width: 78px; height: 78px; object-fit: contain; margin-bottom: 1.5rem; opacity: .85; }
[data-theme="light"] .notfound__mark { filter: invert(1); }
.notfound__code {
  font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .22em;
  color: var(--text-3);
}
.notfound__title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  font-weight: 680; letter-spacing: -.035em; line-height: 1.05;
  text-wrap: balance;
}
.notfound__text { color: var(--text-2); margin-bottom: 1.25rem; text-wrap: pretty; }
.notfound__alt { font-size: var(--fs-xs); color: var(--text-3); margin-top: 1rem; }
.notfound__alt a { color: var(--link); }
.notfound__alt a:hover { text-decoration: underline; text-underline-offset: 3px; }


/* ============================================== INTERAÇÃO / HOVER
   Regras deste bloco:
   · só transform, opacity e color — nada que force layout;
   · nada acontece em telas de toque, onde "hover" fica preso depois do tap;
   · tudo silencia sob prefers-reduced-motion.                            */
@media (hover: hover) and (pointer: fine) {

  /* --- cards de produto ------------------------------------------- */
  .card__ico {
    transition: transform .45s var(--ease-spring), color .35s var(--ease-out);
  }
  .card:hover .card__ico { transform: translateY(-3px) scale(1.1) rotate(-4deg); color: var(--accent); }
  .card__title { transition: transform .4s var(--ease-out); }
  .card:hover .card__title { transform: translateX(3px); }
  .card__text { transition: color .35s var(--ease-out); }
  .card:hover .card__text { color: var(--text); }

  /* linha de luz que corre no topo do card */
  .card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; z-index: 1;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transform: scaleX(.4);
    transition: opacity .45s var(--ease-out), transform .6s var(--ease-out);
  }
  .card:hover::before { opacity: .75; transform: scaleX(1); }

  /* --- diferenciais ------------------------------------------------ */
  .usp__t { transition: transform .4s var(--ease-out); }
  .usp:hover .usp__t { transform: translateX(4px); }
  .usp__d { transition: color .35s var(--ease-out); }
  .usp:hover .usp__d { color: var(--text); }

  /* --- avaliações --------------------------------------------------- */
  .rev__av { transition: transform .45s var(--ease-spring); }
  .rev:hover .rev__av { transform: scale(1.1) rotate(-3deg); }
  .rev__stars { transition: transform .4s var(--ease-out); transform-origin: 0 50%; }
  .rev:hover .rev__stars { transform: scale(1.06); }

  /* --- galeria ------------------------------------------------------ */
  .shot figcaption { transition: transform .5s var(--ease-out), padding-bottom .5s var(--ease-out); }
  .shot:hover figcaption { padding-bottom: 1.4rem; }

  /* --- contatos ----------------------------------------------------- */
  .irow__ico { transition: transform .45s var(--ease-spring), color .35s var(--ease-out); }
  .irow:hover .irow__ico { transform: scale(1.12); color: var(--accent-ink); }
  .irow__go { transition: transform .4s var(--ease-out); }
  .irow:hover .irow__go { transform: translateX(4px); }

  /* --- FAQ ---------------------------------------------------------- */
  .faq__item summary span { display: inline-block; transition: transform .4s var(--ease-out); }
  .faq__item summary:hover span { transform: translateX(4px); }

  /* --- texto: sublinhado que preenche da esquerda -------------------- */
  .tlink, .foot__col a, .foot__legal a, .topbar__cta, .notfound__alt a {
    position: relative; text-decoration: none;
  }
  .tlink::before, .foot__col a::before, .foot__legal a::before,
  .topbar__cta::before, .notfound__alt a::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: 0 50%;
    transition: transform .42s var(--ease-out);
  }
  .tlink:hover::before, .foot__col a:hover::before, .foot__legal a:hover::before,
  .topbar__cta:hover::before, .notfound__alt a:hover::before { transform: scaleX(1); }
  .tlink:hover, .foot__col a:hover, .foot__legal a:hover,
  .topbar__cta:hover, .notfound__alt a:hover { text-decoration: none; }

  /* --- cartão do desconto -------------------------------------------- */
  .promo__tag { transition: transform .4s var(--ease-spring), background-color .35s; }
  .promo__card:hover .promo__tag { transform: translateY(-2px); background: var(--surface-3); }
  .promo__tag .ico--xs { transition: transform .5s var(--ease-spring); }
  .promo__card:hover .promo__tag .ico--xs { transform: rotate(-12deg) scale(1.12); }
  .promo__text { transition: color .35s var(--ease-out); }
  .promo__card:hover .promo__text { color: var(--text); }

  /* --- números de confiança no hero ---------------------------------- */
  .hero__trust > div { transition: transform .4s var(--ease-out); }
  .hero__trust > div:hover { transform: translateY(-2px); }

  /* --- marca ---------------------------------------------------------- */
  .foot .brand:hover .brand__mark { transform: scale(1.06) rotate(-3deg); }
  .brand__word { transition: opacity .3s var(--ease-out); }
  .brand:hover .brand__word { opacity: .82; }

  /* --- resumo do Google ----------------------------------------------- */
  .gsum { transition: transform .45s var(--ease-out); }
  .gsum:hover { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .card::before { display: none; }
}


/* ================================================================ MODAIS */
.mscrim {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .3s var(--ease-out);
}
.mscrim.is-open { opacity: 1; }

.modal {
  position: fixed; z-index: 200;
  left: 50%; top: 50%;
  width: min(460px, calc(100vw - 2rem));
  max-height: min(86svh, 760px);
  display: flex; flex-direction: column;
  border-radius: var(--r-panel);
  background: var(--card);
  box-shadow: var(--shadow-2), 0 0 0 1px var(--card-line);
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translate(-50%, -46%) scale(.96);
  transition: opacity .3s var(--ease-out), transform .42s var(--ease-spring), visibility .42s;
}
.modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.4rem 1.05rem;
  box-shadow: inset 0 -1px 0 var(--line);
}
.modal__title { font-size: 1.2rem; font-weight: 660; letter-spacing: -.028em; line-height: 1.2; }
.modal__sub { display: flex; align-items: center; gap: .45rem; margin-top: .4rem; font-size: var(--fs-xs); color: var(--text-2); }
.modal__x {
  flex: none; width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; color: var(--text-2);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.modal__x:hover { background: var(--surface-2); color: var(--text); }
.modal__body { padding: 1.2rem 1.4rem 1.4rem; overflow-y: auto; overscroll-behavior: contain; }
.modal__foot { padding: 1rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom)); box-shadow: inset 0 1px 0 var(--line); }
.modal__label {
  font-size: var(--fs-2xs); font-weight: 640; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-3); margin: 1.5rem 0 .7rem;
}
.modal__body > .modal__label:first-child { margin-top: 0; }

/* endereço */
.dir__addr {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem 1.1rem; border-radius: var(--r-row);
  background: var(--surface-2);
  transition: transform var(--t-med) var(--ease-out);
}
.dir__addr:hover { transform: translateY(-2px); }
.dir__pin { width: 20px; height: 20px; flex: none; color: var(--accent-ink); margin-top: .1rem; }
.dir__addrLabel { display: block; font-size: var(--fs-2xs); color: var(--text-3); }
.dir__addrText { display: block; font-size: var(--fs-sm); font-weight: 550; line-height: 1.45; letter-spacing: -.012em; }

.dir__copy {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .6rem; padding: .55rem .85rem;
  border-radius: var(--r-pill);
  background: transparent; color: var(--link);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: var(--fs-xs); font-weight: 550;
  transition: background-color var(--t-fast), color var(--t-fast);
}
.dir__copy:hover { background: var(--surface-2); }
.dir__copy.is-done { color: #1a8a4a; box-shadow: inset 0 0 0 1px rgba(26,138,74,.45); }
[data-theme="dark"] .dir__copy.is-done { color: #34d17a; box-shadow: inset 0 0 0 1px rgba(52,209,122,.45); }

/* apps de mapa */
.mapapps { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.mapapp {
  display: flex; align-items: center; gap: .65rem;
  padding: .8rem .9rem; border-radius: var(--r-row);
  background: var(--surface-2); color: var(--text);
  font-size: var(--fs-sm); font-weight: 550; letter-spacing: -.012em;
  transition: transform var(--t-med) var(--ease-out), background-color var(--t-fast);
}
.mapapp:hover { transform: translateY(-2px); background: var(--surface-3); }
.mapapp:active { transform: scale(.98); }
/* placa clara atrás do glifo: as marcas escuras (Uber, Apple) sumiriam no
   tema escuro sem ela, e as claras ganham contorno definido nos dois temas */
.mapapp__ico {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  border-radius: 9px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.mapapp__ico svg { width: 18px; height: 18px; }
.mapapp__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* passo a passo */
.dir__steps { counter-reset: step; display: grid; gap: .85rem; }
.dir__steps li {
  counter-increment: step;
  display: grid; grid-template-columns: 26px 1fr; gap: .2rem .75rem;
  align-items: start;
}
.dir__steps li::before {
  content: counter(step);
  grid-row: 1 / span 2;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--text-2);
  font-size: var(--fs-2xs); font-weight: 700;
}
.dir__steps b { font-size: var(--fs-sm); font-weight: 600; letter-spacing: -.015em; }
.dir__steps span { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.55; }

/* No celular a conversa vira modal central: encostada no rodapé ela ficava
   longe do polegar e o teclado a cobria. */
@media (max-width: 820px) {
  .chat.is-open {
    position: fixed; z-index: 200;
    left: 50%; top: 50%; right: auto; bottom: auto;
    width: min(430px, calc(100vw - 1.6rem));
    transform: translate(-50%, -50%);
  }
  .chat { transform: translate(-50%, -46%) scale(.96); }
  .chat__body { max-height: min(46svh, 340px); }
}

@media (max-width: 480px) {
  .modal { width: calc(100vw - 1.4rem); max-height: 88svh; border-radius: var(--r-card); }
  .modal__head { padding: 1.15rem 1.15rem .9rem; }
  .modal__body { padding: 1.05rem 1.15rem 1.2rem; }
  .modal__foot { padding: .9rem 1.15rem calc(1.1rem + env(safe-area-inset-bottom)); }
  .mapapps { grid-template-columns: 1fr 1fr; gap: .45rem; }
  .mapapp { padding: .75rem .7rem; font-size: var(--fs-xs); }
  .mapapp__ico { width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .modal { transform: translate(-50%, -50%) scale(1); }
}


/* ============================================================= LIGHTBOX */
.shot.is-zoomable { cursor: zoom-in; }
.shot.is-zoomable:focus-visible { outline: 2px solid var(--link); outline-offset: 3px; }

.lb {
  position: fixed; inset: 0; z-index: 210;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: clamp(.75rem, 2vw, 1.5rem);
  background: rgba(0, 0, 0, .93);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease-out), visibility .28s;
}
.lb.is-open { opacity: 1; visibility: visible; }

.lb__bar {
  grid-column: 1 / -1; grid-row: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 .25rem calc(.5rem + env(safe-area-inset-top));
  color: rgba(255,255,255,.82);
}
.lb__counter { font-size: var(--fs-xs); font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.lb__x {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; color: #fff; background: rgba(255,255,255,.1);
  transition: background-color var(--t-fast), transform var(--t-fast) var(--ease-spring);
}
.lb__x:hover { background: rgba(255,255,255,.2); }
.lb__x:active { transform: scale(.92); }

.lb__stage {
  grid-column: 2; grid-row: 2;
  display: grid; place-items: center;
  min-width: 0; min-height: 0; margin: 0;
  outline: none;
}
.lb__stage picture { display: contents; }
.lb__stage img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  animation: lbIn .42s var(--ease-out) both;
}
.lb__stage img.is-loading { opacity: .35; }
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lb.is-instant .lb__stage img { animation: none; }

.lb__nav {
  grid-row: 2;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; color: #fff; background: rgba(255,255,255,.1);
  transition: background-color var(--t-fast), transform var(--t-fast) var(--ease-spring), opacity var(--t-med);
}
.lb__nav--prev { grid-column: 1; }
.lb__nav--next { grid-column: 3; }
.lb__nav:hover { background: rgba(255,255,255,.2); }
.lb__nav:active { transform: scale(.92); }
.lb__nav[disabled] { opacity: 0; pointer-events: none; }

.lb__caption {
  grid-column: 1 / -1; grid-row: 3;
  padding-top: .85rem; text-align: center;
  font-size: var(--fs-sm); color: rgba(255,255,255,.82);
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 640px) {
  .lb { grid-template-columns: 1fr; padding: .6rem; }
  .lb__stage { grid-column: 1; }
  /* no celular a navegação é por deslize; os botões flutuam sobre a foto */
  .lb__nav {
    grid-column: 1; grid-row: 2;
    align-self: end; justify-self: center;
    width: 44px; height: 44px;
    transform: translateY(3.25rem);
  }
  .lb__nav--prev { margin-right: 7rem; }
  .lb__nav--next { margin-left: 7rem; }
  .lb__nav:active { transform: translateY(3.25rem) scale(.92); }
  .lb__caption { padding-top: 4.5rem; font-size: var(--fs-xs); }
}


/* ===================================================== NITIDEZ NAS ESCALAS
   Elementos que crescem no hover ganham camada própria desde o repouso.
   Sem isto o navegador rasteriza no tamanho pequeno, escala o bitmap (fica
   borrado) e só depois redesenha — que é o "muda de qualidade" ao passar o
   mouse. A lista é curta de propósito: cada camada custa memória. */
@media (hover: hover) and (pointer: fine) {
  .card__ico svg,
  .rev__av,
  .irow__ico,
  .brand__mark,
  .mapapp__ico svg,
  .promo__tag .ico--xs,
  .shot img,
  .ticket {
    will-change: transform;
    backface-visibility: hidden;
  }
}

/* Transições em pares sempre com a mesma duração: quando opacidade e
   transform terminam em momentos diferentes, o elemento parece se ajeitar
   depois de já ter aparecido. */
.mapapp, .dir__addr, .irow, .card, .rev, .usp, .gsum, .faq__item {
  transition-duration: .3s;
  transition-timing-function: var(--ease-out);
}

/* Durante o arraste o cursor vira "agarrando" e o encaixe fica desligado —
   com ele ligado o navegador tenta acomodar a cada pixel e a fita salta. */
.rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.rail.is-dragging .shot { pointer-events: none; }
.rail.is-dragging img { user-select: none; -webkit-user-drag: none; }
