/* =========================================================
   Ótica Ipanema — "De volta ao foco"
   Paleta real da marca: navy #172933 · teal #4e8582 · ouro de luz diurna
   Trajetória de luz: manhã suave → clareza quente → fim de tarde dourado
   ========================================================= */

:root {
  --ink: #172933;
  --ink-soft: #4c5d66;
  --ink-faint: #7d8b93;
  --accent: #4e8582;
  --accent-deep: #3a6663;
  --accent-glow: #8fc0bb;
  --gold: #b9862c;
  --gold-soft: #e5c078;
  --paper: #f5f3ec;
  --surface: #fffdf7;
  --surface-2: #eceee8;
  --noite: #0e1b22;
  --noite-2: #14262e;
  --line: #dcd6c8;
  --line-strong: #bcb5a5;

  --fonte-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --fonte-corpo: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fonte-mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --max-width: 1180px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(4.8rem, 10vw, 8.5rem);
  --radius: 4px;
  --shadow: 0 24px 60px rgba(23, 41, 51, 0.12);
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);

  /* Dirigidas pelo scroll (foco.js); defaults = manhã suave */
  --scroll: 0;
  --luz-x: 72%;
  --luz-y: 10%;
  --luz-cor: 214, 226, 214;
  --luz-quente: 0;
  --foco-cor: 78, 133, 130; /* teal → dourado, interpolado pelo scroll */
  --foco-glow-late: 0; /* bloom secundário, acende a partir de ~30% do scroll */
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 40;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.container--estreito {
  max-width: 62rem;
}

/* ---------- Atmosfera: luz do dia + poeira/bokeh ---------- */

.luz-ambiente {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46rem 34rem at var(--luz-x) var(--luz-y), rgba(var(--luz-cor), 0.5), transparent 68%),
    radial-gradient(60rem 40rem at 12% 88%, rgba(var(--luz-cor), 0.22), transparent 70%);
  transition: background 400ms linear;
}

.poeira {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

/* ---------- Indicador de progresso: barra-lente no topo ---------- */
/* Único indicador em todas as telas, no lugar do antigo medidor lateral.
   Camadas: trilho navy + escala de dioptres, preenchimento teal→dourado
   que engrossa no meio e afia no fim, brilho que floresce na chegada.
   Áreas largas usam só transform/opacity; o fio-marca (2px) usa left. */

.progresso-topo {
  position: fixed;
  z-index: 31;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: none;
}

/* Trilho navy: base sólida que marca a linha superior da página */
.progresso-topo__trilho {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 41, 51, 0.35), rgba(23, 41, 51, 0.2));
  border-bottom: 1px solid var(--accent);
}

/* Escala de dioptres: ticks de alto contraste, em toda a altura da barra */
.progresso-topo__escala {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(23, 41, 51, 0.55) 0 1px, transparent 1px 10px);
  opacity: 0.6;
}

/* Preenchimento: cresce com o scroll, engrossa no meio e afia saturado */
.progresso-topo__preenchimento {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(var(--scroll)) scaleY(calc(1 + 2.2 * var(--scroll) * (1 - var(--scroll))));
  background: linear-gradient(90deg, var(--accent) 0%, rgb(var(--foco-cor)) 55%, var(--gold-soft) 100%);
  box-shadow: 0 2px 6px rgba(229, 192, 120, 0.4);
  filter: blur(calc((1 - var(--scroll)) * 1.4px)) saturate(calc(1.15 + var(--scroll) * 0.35));
  will-change: transform;
}

/* Brilho dourado: bloom principal no fim + respiro rápido */
.progresso-topo__brilho {
  position: absolute;
  inset: 0;
  opacity: min(1, var(--scroll) * 1.5);
  background: linear-gradient(90deg, transparent 55%, rgba(229, 192, 120, 0.9));
  mix-blend-mode: screen;
  animation: foco-respiro 2.4s ease-in-out infinite;
}

/* Bloom secundário suave que acende desde ~30% do scroll (via --foco-glow-late) */
.progresso-topo__brilho::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--foco-glow-late);
  background: linear-gradient(90deg, rgba(229, 192, 120, 0.55), transparent 55%);
}

@keyframes foco-respiro {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.45); }
}

/* Marca-lente: ponteiro que percorre a barra e afia na chegada */
.progresso-topo__marca {
  position: absolute;
  top: 50%;
  left: calc(var(--scroll) * 100%);
  width: 4px;
  height: 22px;
  translate: -2px -50%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--accent));
  box-shadow: 0 0 14px rgba(229, 192, 120, 0.85);
  filter: blur(calc((1 - var(--scroll)) * 2px));
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 55%, transparent);
  backdrop-filter: blur(10px);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 10px 30px rgba(23, 41, 51, 0.07);
}

.header-inner {
  display: flex;
  min-height: 4.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: 2.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.site-nav .nav-cta {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.6rem 0.7rem;
  background: transparent;
}

.menu-toggle__icone {
  display: grid;
  gap: 4px;
}

.menu-toggle__icone i {
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icone i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icone i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icone i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Tipografia editorial ---------- */

.eyebrow,
.kicker,
.painel-rotulo,
.preco-rotulo,
.contato-rotulo,
.footer-label {
  font-family: var(--fonte-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  color: var(--accent-deep);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(78, 133, 130, 0.5);
  animation: pulso 2.6s infinite;
}

@keyframes pulso {
  0% { box-shadow: 0 0 0 0 rgba(78, 133, 130, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(78, 133, 130, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 133, 130, 0); }
}

.kicker {
  margin: 0 0 1.1rem;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  font-family: var(--fonte-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  line-height: 1.0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.06;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--accent-deep);
}

.ghost {
  position: absolute;
  z-index: 0;
  top: 4%;
  right: -2%;
  pointer-events: none;
  user-select: none;
  font-family: var(--fonte-display);
  font-style: italic;
  font-size: clamp(7rem, 19vw, 17rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 41, 51, 0.2);
}

.ghost--claro {
  -webkit-text-stroke-color: rgba(245, 243, 236, 0.13);
}

/* ---------- Botões e links ---------- */

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.button-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 12px 28px rgba(58, 102, 99, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.button--grande {
  min-height: 3.4rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--accent-deep);
  font-weight: 700;
  text-underline-offset: 0.3em;
}

.text-link:hover {
  color: var(--accent);
}

.text-link--claro {
  color: var(--gold-soft);
}

.microcopy {
  margin: 1rem 0 0;
  color: var(--ink-faint);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* ---------- HERO · entrada ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
}

.hero__lente {
  position: absolute;
  z-index: 1;
  top: 12%;
  right: 6%;
  width: clamp(9rem, 20vw, 17rem);
  --blur-entrada: 12px;
  animation: flutuar 9s ease-in-out infinite, nascer-em-foco 1.6s var(--ease) 0.25s both;
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

/* Foco de entrada: o hero inteiro nasce embaçado, como quem acorda sem óculos,
   e afia em ~2s. Blur maior no fundo, menor no texto (prioridade de leitura). */
@keyframes nascer-em-foco {
  from { filter: blur(var(--blur-entrada, 12px)); }
  to { filter: blur(0); }
}

.olho-png {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(23, 41, 51, 0.18));
}

.olho-png.olho-blink {
  animation: piscar 480ms ease-in-out;
}

@keyframes piscar {
  0%, 100% { transform: scaleY(1); }
  45% { transform: scaleY(0.07); }
  60% { transform: scaleY(0.12); }
}

.olho-glint {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 52%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
  opacity: 0;
}

.olho-glint.glint-on {
  animation: glint 1.5s ease-out;
}

.olho-glint-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translate(calc(var(--glint-x, 0) * 1px), calc(var(--glint-y, 0) * 1px));
  transition: transform 350ms ease-out;
}

@keyframes glint {
  0% { opacity: 0; transform: translate(-14px, 10px) scale(0.86); }
  35% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(14px, -10px) scale(1.08); }
}

/* Feixe branco que atravessa a cena e entra no prisma, com franjas cromáticas */
.hero__raio {
  position: absolute;
  top: 56%;
  right: -2%;
  width: 155%;
  height: 2px;
  transform-origin: right center;
  rotate: -17deg;
  background: linear-gradient(90deg,
    transparent,
    rgba(229, 192, 120, 0.8) 38%,
    rgba(245, 243, 236, 0.95) 50%,
    rgba(143, 192, 187, 0.75) 62%,
    transparent);
  box-shadow:
    0 2px 0 rgba(143, 192, 187, 0.38),
    0 -2px 0 rgba(229, 192, 120, 0.38),
    0 0 18px rgba(229, 192, 120, 0.28),
    0 0 42px rgba(143, 192, 187, 0.22);
}

/* Raio secundário: eco mais fino, deslocado abaixo do feixe principal */
.hero__raio::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 192, 120, 0.45) 45%, rgba(143, 192, 187, 0.4) 62%, transparent);
  filter: blur(1px);
  animation: raio-eco 7s ease-in-out infinite;
}

@keyframes raio-eco {
  0%, 100% { opacity: 0.45; transform: translateX(0); }
  50% { opacity: 0.95; transform: translateX(-3%); }
}

/* Prisma de vidro: triângulo translúcido onde o feixe se dispersa */
.hero__prisma {
  position: absolute;
  top: 42%;
  right: -13%;
  width: 2.7rem;
  height: 3rem;
  rotate: 6deg;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.5), rgba(143, 192, 187, 0.22) 52%, rgba(229, 192, 120, 0.2));
  filter: drop-shadow(0 6px 18px rgba(143, 192, 187, 0.35)) drop-shadow(1px 0 0 rgba(143, 192, 187, 0.4)) drop-shadow(-1px 0 0 rgba(229, 192, 120, 0.35));
  animation: prisma-oscilar 9s ease-in-out infinite;
}

/* O prisma gira devagar em torno dos 6°: dispersão que nunca para quieta */
@keyframes prisma-oscilar {
  0%, 100% { rotate: 4.2deg; }
  50% { rotate: 7.8deg; }
}

/* Dispersão espectral: leque de faixas coloridas saindo da face do prisma */
.espectro {
  position: absolute;
  top: 62%;
  right: -15%;
  width: 0;
  height: 0;
}

/* Dispersão da marca: leque em vermelho → amarelo → verde → azul (matizes
   vizinhas da paleta, em screen sobre a foto) lidos como luz, não como cor */
.espectro__faixa {
  position: absolute;
  left: 0;
  top: 0;
  width: 340%;
  height: 1.3rem;
  transform-origin: left center;
  transform: rotate(var(--ang));
  background: linear-gradient(180deg, transparent, var(--cor-dispersao, var(--cor)) 46%, transparent);
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: refratar 11s ease-in-out infinite;
  animation-delay: var(--atraso, 0s);
}

.espectro__faixa:nth-child(1) { --cor-dispersao: rgba(197, 108, 96, 0.85); }
.espectro__faixa:nth-child(2) { --cor-dispersao: rgba(229, 192, 120, 0.9); }
.espectro__faixa:nth-child(3) { --cor-dispersao: rgba(143, 192, 168, 0.8); }
.espectro__faixa:nth-child(4) { --cor-dispersao: rgba(118, 156, 186, 0.85); }

@keyframes refratar {
  0%, 100% { transform: rotate(var(--ang)) translateY(0); opacity: 0.18; }
  50% { transform: rotate(calc(var(--ang) + 2deg)) translateY(-4px); opacity: 0.34; }
}

.hero__fundo {
  position: absolute;
  inset: 0;
  z-index: 0;
  --blur-entrada: 18px;
  animation: nascer-em-foco 1.8s var(--ease) both;
}

.hero__fundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__veu {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 6%, rgba(245, 243, 236, 0.93) 36%, rgba(245, 243, 236, 0.55) 62%, rgba(245, 243, 236, 0.25) 100%),
    linear-gradient(180deg, rgba(245, 243, 236, 0.7), transparent 26%, transparent 66%, rgba(245, 243, 236, 0.92));
}

.lente-vidro {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(23, 41, 51, 0.1);
}

.lente-vidro--convexa {
  width: 11rem;
  height: 11rem;
  left: 55%;
  bottom: 11%;
  backdrop-filter: blur(2px) saturate(1.3) brightness(1.05);
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.5), rgba(143, 192, 187, 0.12) 55%, transparent 72%);
  box-shadow: 0 18px 40px rgba(23, 41, 51, 0.12), inset 0 0 22px rgba(255, 255, 255, 0.45), inset 2px 0 0 rgba(143, 192, 187, 0.26), inset -2px 0 0 rgba(229, 192, 120, 0.22);
  animation: flutuar 11s ease-in-out infinite, nascer-em-foco 1.6s var(--ease) 0.2s both;
}

.lente-vidro--concava {
  width: 8rem;
  height: 8rem;
  left: 44%;
  top: 17%;
  backdrop-filter: blur(1px) contrast(0.96);
  background: radial-gradient(circle at 65% 62%, rgba(255, 255, 255, 0.32), transparent 62%);
  box-shadow: inset 0 6px 18px rgba(23, 41, 51, 0.16), inset 0 -2px 8px rgba(255, 255, 255, 0.5), inset -2px 0 0 rgba(143, 192, 187, 0.24), inset 2px 0 0 rgba(229, 192, 120, 0.2);
  --blur-entrada: 10px;
  animation: nascer-em-foco 1.6s var(--ease) 0.2s both;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 42rem);
  align-items: center;
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  --blur-entrada: 9px;
  animation: nascer-em-foco 1.5s var(--ease) 0.45s both;
}

.hero__copy {
  max-width: 36rem;
}

.palavra-foco {
  font-style: italic;
  color: var(--accent-deep);
}

.hero__lead {
  max-width: 32rem;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero__fatos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 3rem 0 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 1.1rem;
}

.hero__fatos dt {
  font-family: var(--fonte-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero__fatos dd {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__legenda {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  bottom: 1.5rem;
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-style: italic;
  --blur-entrada: 7px;
  animation: nascer-em-foco 1.4s var(--ease) 0.7s both;
}

.hero__cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.4rem;
  translate: -50%;
  --blur-entrada: 7px;
  animation: nascer-em-foco 1.4s var(--ease) 0.7s both;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.hero__cue-linha {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: descer 2.4s ease-in-out infinite;
}

@keyframes descer {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__cue-rotulo {
  font-family: var(--fonte-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Zonas ---------- */

.secao {
  position: relative;
  padding-block: var(--section-space);
  scroll-margin-top: 5rem;
}

.secao--silencio {
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
}

.secao-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.secao-head--duas {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.secao-head__nota {
  max-width: 18rem;
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.secao-lead {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Descoberta · faixa de impacto (zona escura) */

.faixa-impacto {
  position: relative;
  z-index: 2;
  padding-block: clamp(5.5rem, 12vw, 10rem);
  background:
    radial-gradient(50rem 30rem at 80% 0%, rgba(78, 133, 130, 0.22), transparent 65%),
    var(--noite-2);
  color: var(--paper);
  overflow: hidden;
  scroll-margin-top: 5rem;
}

.faixa-impacto h2 {
  max-width: 24ch;
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
}

.faixa-impacto h2 .focus {
  color: var(--gold-soft);
}

.faixa-impacto__lead {
  max-width: 36rem;
  margin: 1.8rem 0 0;
  color: rgba(245, 243, 236, 0.72);
  font-size: 1.08rem;
}

/* Serviços · facetas */

.facetas {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.faceta {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) 2.6rem;
  align-items: center;
  gap: 1.6rem;
  padding: 1.7rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, padding-left 220ms ease;
}

.faceta:hover {
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  padding-left: 1.2rem;
}

.faceta__num {
  font-family: var(--fonte-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.faceta__corpo h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

.faceta__corpo p {
  max-width: 46rem;
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.faceta__seta {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-deep);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faceta__seta:hover,
.faceta__seta:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  transform: translate(3px, -3px);
}

/* Identidade · zona silenciosa */

.sobre-grade {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.sobre-copy {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.sobre-copy p {
  margin: 0 0 1.1rem;
}

.sobre-foto {
  margin: 0 0 1.6rem;
}

.sobre-foto img {
  width: 100%;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.sobre-foto figcaption {
  margin-top: 0.7rem;
  color: var(--ink-faint);
  font-size: 0.8rem;
  font-style: italic;
}

.sobre-foto figcaption em {
  color: var(--accent-deep);
}

.sobre-painel {
  border-left: 2px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.3rem;
}

.painel-rotulo {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-deep);
}

.sobre-painel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.sobre-painel dt {
  color: var(--ink-faint);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sobre-painel dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
  line-height: 1.4;
}

/* Galeria · desejo */

/* Desejo · vitrine (zona escura da marca) */

.secao--vitrine {
  overflow: hidden;
  background:
    radial-gradient(58rem 30rem at 84% 6%, rgba(78, 133, 130, 0.18), transparent 62%),
    radial-gradient(42rem 26rem at 10% 94%, rgba(229, 192, 120, 0.1), transparent 60%),
    var(--noite);
  color: var(--paper);
}

.secao--vitrine .kicker {
  color: var(--gold-soft);
}

.secao--vitrine h2 {
  color: var(--paper);
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.secao--vitrine h2 em {
  color: var(--gold-soft);
}

.secao--vitrine .secao-lead {
  color: rgba(245, 243, 236, 0.72);
}

.secao--vitrine .secao-head__nota {
  padding-left: 0.9rem;
  border-left: 1px solid rgba(229, 192, 120, 0.45);
  color: rgba(245, 243, 236, 0.55);
}

/* Vitrine estilo Pinterest: masonry de colunas com alturas irregulares */
.galeria {
  columns: 3;
  column-gap: clamp(1rem, 2vw, 1.6rem);
}

.galeria-item {
  margin: 0 0 clamp(1rem, 2vw, 1.6rem);
  break-inside: avoid;
  will-change: transform;
}

.galeria-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(245, 243, 236, 0.16);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(4, 12, 16, 0.38);
  transition: transform 600ms var(--ease), border-color 300ms ease, box-shadow 300ms ease;
}

.galeria-item:hover img,
.galeria-item:focus-within img {
  transform: scale(1.02);
  border-color: rgba(229, 192, 120, 0.55);
  box-shadow: 0 22px 48px rgba(4, 12, 16, 0.5);
}

.galeria-item figcaption {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.9rem;
}

.galeria-item__num {
  font-family: var(--fonte-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.galeria-item__titulo {
  font-family: var(--fonte-display);
  font-size: 1.2rem;
  color: var(--paper);
}

.galeria-item__desc {
  font-size: 0.85rem;
  color: rgba(245, 243, 236, 0.6);
}

/* Ritmo irregular do masonry: cada card impõe sua altura */
.galeria-item--tall img {
  aspect-ratio: 4 / 5;
}

.galeria-item--wide img {
  aspect-ratio: 3 / 2;
}

.galeria-item--square img {
  aspect-ratio: 1 / 1;
}

.galeria-item--medium img {
  aspect-ratio: 4 / 3;
}

/* Enquadramentos que pedem o topo da foto (óculos apoiados em bancada) */
.galeria-item--crop-top img {
  object-position: top;
}

/* Cartão de conversão: fecha a vitrine em largura total (fora do masonry) */
.galeria-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem 2.4rem;
  margin: clamp(1rem, 2vw, 1.6rem) 0 0;
  padding: clamp(1.6rem, 3.4vw, 2.6rem) clamp(1.6rem, 3.4vw, 3rem);
  border: 1px solid rgba(229, 192, 120, 0.35);
  border-radius: 6px;
  background:
    radial-gradient(30rem 14rem at 88% 0%, rgba(229, 192, 120, 0.12), transparent 60%),
    rgba(20, 38, 46, 0.65);
  box-shadow: 0 14px 34px rgba(4, 12, 16, 0.38);
}

.galeria-cta__titulo {
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  font-family: var(--fonte-display);
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--paper);
}

.galeria-cta__texto {
  grid-row: 2;
  grid-column: 1;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 243, 236, 0.66);
}

.galeria-cta .button {
  grid-row: 1 / 3;
  grid-column: 2;
  justify-self: end;
}

.secao--vitrine .button-secondary {
  border-color: rgba(229, 192, 120, 0.5);
  color: var(--gold-soft);
}

.secao--vitrine .button-secondary:hover,
.secao--vitrine .button-secondary:focus-visible {
  border-color: var(--gold-soft);
  background: rgba(229, 192, 120, 0.12);
  color: var(--gold-soft);
}

/* Como funciona na loja: linha do tempo em três passos */
.passos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin: clamp(3rem, 6vw, 4.6rem) 0 0;
  padding: clamp(1.8rem, 4vw, 2.8rem) 0 0;
  border-top: 1px solid rgba(245, 243, 236, 0.14);
  list-style: none;
}

.passo {
  position: relative;
  display: grid;
  gap: 0.4rem;
  padding-top: 1.3rem;
}

.passo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.passo__num {
  font-family: var(--fonte-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-glow);
}

.passo__titulo {
  font-family: var(--fonte-display);
  font-size: 1.25rem;
  color: var(--paper);
}

.passo__desc {
  max-width: 22rem;
  font-size: 0.88rem;
  color: rgba(245, 243, 236, 0.62);
}

.galeria-credito {
  margin: 2.6rem 0 0;
  color: rgba(245, 243, 236, 0.5);
  font-size: 0.76rem;
}

.galeria-credito a {
  color: var(--gold-soft);
  text-underline-offset: 0.25em;
}

/* Por dentro · faixa de imagem full-bleed */

.faixa-foto {
  position: relative;
  z-index: 2;
  background: var(--noite);
}

.faixa-foto figure {
  margin: 0;
  position: relative;
}

.faixa-foto img {
  width: 100%;
  height: min(74vh, 40rem);
  object-fit: cover;
  object-position: center 42%;
}

.faixa-foto__legenda {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem var(--gutter) 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(14, 27, 34, 0.85));
  color: rgba(245, 243, 236, 0.85);
  font-size: 0.92rem;
}

.faixa-foto__legenda span {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--fonte-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Confiança · zona escura quente */

.faixa-confianca {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 11vw, 9rem);
  background:
    radial-gradient(46rem 30rem at 12% 100%, rgba(185, 134, 44, 0.2), transparent 62%),
    var(--noite-2);
  color: var(--paper);
  overflow: hidden;
  scroll-margin-top: 5rem;
}

.confianca-grade {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.confianca-copy .kicker {
  color: var(--gold-soft);
}

.confianca-copy p:not(.kicker) {
  max-width: 34rem;
  color: rgba(245, 243, 236, 0.74);
}

.frase-assinatura {
  margin: 1.8rem 0 0;
  font-family: var(--fonte-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-soft);
}

.confianca-preco {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(229, 192, 120, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.04);
}

.preco-rotulo {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
}

.preco-valor {
  display: block;
  font-family: var(--fonte-display);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--paper);
}

.confianca-preco p {
  margin: 0.9rem 0 1.4rem;
  color: rgba(245, 243, 236, 0.66);
  font-size: 0.85rem;
}

/* Relacionamento · contato dourado */

.secao--relacionamento {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(52rem 34rem at 85% 100%, rgba(185, 134, 44, 0.26), transparent 60%),
    linear-gradient(180deg, var(--noite-2), var(--noite));
  color: var(--paper);
  scroll-margin-top: 5rem;
}

.secao--relacionamento .kicker {
  color: var(--gold-soft);
}

.secao--relacionamento .secao-lead {
  color: rgba(245, 243, 236, 0.7);
}

.contato-grade {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contato-copy {
  display: grid;
  gap: 2rem;
}

.contato-bloco {
  display: grid;
  gap: 0.35rem;
  border-top: 1px solid rgba(245, 243, 236, 0.2);
  padding-top: 1.1rem;
}

.contato-rotulo {
  margin-bottom: 0.5rem;
  color: var(--gold-soft);
}

.contato-bloco address {
  font-style: normal;
  color: rgba(245, 243, 236, 0.8);
  line-height: 1.6;
}

.contato-bloco a {
  color: rgba(245, 243, 236, 0.85);
  text-decoration: none;
}

.contato-bloco a:hover,
.contato-bloco a:focus-visible {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.mapa-painel {
  border: 1px solid rgba(245, 243, 236, 0.22);
  background: var(--surface);
  color: var(--ink);
}

.mapa-topo {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.mapa-topo .contato-rotulo {
  margin: 0;
  color: var(--accent-deep);
}

.mapa-frame {
  min-height: 20rem;
}

.mapa-embed {
  display: block;
  width: 100%;
  min-height: 20rem;
  border: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 2;
  padding: 3.6rem 0 1.4rem;
  background: var(--noite);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 3rem;
  padding-bottom: 2.8rem;
}

.footer-brand img {
  width: 11rem;
  height: auto;
  margin-bottom: 1rem;
}

.footer-grid p {
  margin: 0;
  color: rgba(245, 243, 236, 0.68);
  font-size: 0.88rem;
}

.footer-label {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent-glow);
}

.footer-links {
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.site-footer a {
  color: rgba(245, 243, 236, 0.75);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(245, 243, 236, 0.16);
  padding-top: 1.2rem;
  color: rgba(245, 243, 236, 0.5);
  font-size: 0.74rem;
}

.footer-dev strong {
  color: var(--gold-soft);
}

/* ---------- WhatsApp flutuante ---------- */

.floating-whatsapp {
  position: fixed;
  z-index: 9;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(23, 41, 51, 0.28);
  transition: background-color 180ms ease, transform 180ms ease, opacity 260ms ease, visibility 260ms ease, translate 260ms var(--ease);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

/* Com JS, o botão só entra depois que o hero sai de cena — no iPhone ele
   cobria a grade de fatos do hero. Sem JS, permanece sempre visível. */
html.js .floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  translate: 0 10px;
}

html.js .floating-whatsapp.is-visivel {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

/* ---------- Cursor-lente (desktop) ---------- */

.cursor-lente {
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(229, 192, 120, 0.16), rgba(143, 192, 187, 0.1) 46%, transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.cursor-lente.ativa {
  opacity: 1;
}

/* ---------- Reveal + focus-pull ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* O fundo do hero não desliza: só surge e entra em foco */
html.js .hero__fundo[data-reveal] {
  transform: none;
  transition: opacity 900ms ease;
}

html.js [data-reveal] img.focus {
  /* blur + leve dispersão espectral nas bordas: só durante a transição */
  filter: blur(18px) saturate(0.85) drop-shadow(1.5px 0 0 rgba(143, 192, 187, 0.3)) drop-shadow(-1.5px 0 0 rgba(229, 192, 120, 0.26));
  transform: scale(1.05);
  transition: filter 1100ms ease 120ms, transform 1300ms var(--ease) 60ms;
}

html.js [data-reveal].is-in img.focus {
  filter: blur(0) saturate(1);
  transform: none;
}

html.js [data-reveal] .focus:not(img) {
  filter: blur(9px);
  transition: filter 900ms ease 160ms;
}

html.js [data-reveal].is-in .focus:not(img) {
  filter: blur(0);
}

html.js .faceta h3 {
  filter: blur(6px);
  transition: filter 700ms ease 100ms;
}

html.js .faceta.is-in h3 {
  filter: blur(0);
}

html.js .palavra-foco {
  filter: blur(12px) drop-shadow(1px 0 0 rgba(143, 192, 187, 0.45)) drop-shadow(-1px 0 0 rgba(229, 192, 120, 0.4));
  opacity: 0.35;
  transition: filter 1000ms ease 450ms, opacity 1000ms ease 450ms;
}

html.js .palavra-foco.is-in {
  filter: blur(0);
  opacity: 1;
}

/* ---------- Responsivo ---------- */

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero__lente {
    top: 8%;
    right: 4%;
    width: 8.5rem;
  }

  .espectro {
    opacity: 0.5;
  }

  .espectro__faixa {
    width: 260%;
  }

  .lente-vidro {
    display: none;
  }

  .sobre-grade,
  .confianca-grade,
  .contato-grade {
    grid-template-columns: 1fr;
  }

  .secao-head--duas {
    flex-direction: column;
    align-items: start;
  }

  .galeria {
    columns: 2;
  }

  .passos {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .galeria-cta {
    grid-template-columns: 1fr;
  }

  .galeria-cta__titulo,
  .galeria-cta__texto {
    grid-column: 1;
  }

  .galeria-cta .button {
    grid-row: auto;
    grid-column: 1;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.1rem;
    --section-space: 4.6rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 4.9rem;
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 0.6rem;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0.7rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 5.9rem;
    padding-bottom: 1.9rem;
  }

  /* O hero preenche a altura do dispositivo: as margens automáticas do bloco
     de conteúdo dividem o espaço que sobra acima/abaixo. Em telas baixas,
     onde o conteúdo transborda, as margens zera e nada é cortado. */
  .hero__inner {
    margin-block: auto;
  }

  /* Escala compacta do hero: sem ela o conteúdo não cabe na primeira dobra
     do iPhone — título, eyebrow e respiros comem a tela inteira. */
  .hero h1 {
    font-size: clamp(2.2rem, 8.6vw, 2.9rem);
  }

  .eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .hero__lead {
    margin-top: 1.1rem;
    font-size: 1rem;
  }

  .hero__cta {
    margin-top: 1.5rem;
  }

  /* Em telas estreitas a legenda e a dica de rolagem entram no fluxo: antes,
     ambas absolutas no fundo do hero, colidiam com a grade de fatos e entre si. */
  .hero__legenda {
    position: static;
    width: auto;
    margin: 1.3rem var(--gutter) 0;
  }

  .hero__cue {
    position: static;
    translate: none;
    width: max-content;
    margin: 0.9rem auto 0;
  }

  .hero__cue-linha {
    height: 2rem;
  }

  .hero__fatos {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1.1rem;
    margin-top: 1.7rem;
    padding-top: 0.95rem;
  }

  .hero__fatos dd {
    font-size: 0.85rem;
  }

  .microcopy {
    margin-top: 0.8rem;
  }

  /* Palavras-fantasma (luz/nitidez/bairro/escolha/cuidado): em telas estreitas o
     contorno gigante cruzava kicker e parágrafos de cada seção. Decorativas e
     aria-hidden, somem no mobile para o texto de conteúdo respirar. */
  .ghost {
    display: none;
  }

  .faceta {
    grid-template-columns: 2.6rem minmax(0, 1fr) 2.2rem;
    gap: 0.9rem;
  }

  .galeria {
    columns: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

/* ---------- Movimento reduzido ---------- */

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js [data-reveal],
  html.js [data-reveal] img.focus,
  html.js .palavra-foco,
  html.js .faceta h3 {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero__lente,
  .hero__fundo,
  .hero__inner,
  .hero__legenda,
  .hero__cue,
  .lente-vidro,
  .live-dot,
  .hero__cue-linha,
  .hero__raio,
  .hero__raio::after,
  .hero__prisma,
  .espectro__faixa {
    animation: none !important;
  }

  .espectro__faixa {
    opacity: 0.22;
  }

  /* Barra-lente: sempre nítida e sem respiro para quem reduz movimento */
  .progresso-topo__preenchimento,
  .progresso-topo__marca {
    filter: none;
  }

  .progresso-topo__brilho {
    animation: none;
  }

  .cursor-lente {
    display: none;
  }
}

/* ---------- Sem JS ---------- */

html.no-js .progresso-topo {
  display: none;
}
