/* =============================================================
   ENNO — Eu Não Nasci de Óculos
   Design System · Premium dark · Navy + Sand Gold
   ============================================================= */

:root {
  /* Paleta oficial */
  --navy: #0A2B40;
  --ink: #0A0D0B;
  --sand: #A69B7C;
  --taupe: #8C756C;
  --cream: #F2F2F2;

  /* Derivadas */
  --bg: #070C11;
  --bg-2: #0A1926;
  --navy-soft: #0E3350;
  --sand-light: #C6B892;
  --gold: #A69B7C;
  --gold-2: #C6B892;

  --text: #EEF0F1;
  --text-soft: rgba(238, 240, 241, 0.74);
  --muted: rgba(238, 240, 241, 0.52);

  --border: rgba(166, 155, 124, 0.24);
  --border-soft: rgba(238, 240, 241, 0.10);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.06);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 18px 44px -18px rgba(166, 155, 124, 0.5);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1200px;
  --pad: clamp(1.15rem, 4vw, 2rem);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 112px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--sand); color: var(--ink); }

/* Fundo cinematográfico fixo (glow ambiente) */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(10, 43, 64, 0.85), transparent 60%),
    radial-gradient(900px 620px at -6% 12%, rgba(140, 117, 108, 0.14), transparent 55%),
    radial-gradient(1200px 800px at 50% 116%, rgba(10, 43, 64, 0.6), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/></svg>");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
/* clip horizontal: as animações .reveal--left/right começam deslocadas ±32px;
   recortar por seção evita qualquer overflow/scroll horizontal (mobile-safe). */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; overflow-x: clip; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--light { background: var(--cream); color: var(--ink); }
.divider { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--border), transparent); }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.grid-2--wide { grid-template-columns: 1.05fr 0.95fr; }
.grid-2 .media { order: 2; }
.grid-2--flip .col-text { order: 2; }
.grid-2--flip .media { order: 1; }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--sand); opacity: 0.8; }
.section--light .eyebrow { color: var(--taupe); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
.h1, h1 { font-size: clamp(2.15rem, 5.2vw, 3.75rem); }
.h2, h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); margin-bottom: 1.25rem; }
.h3, h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.gold { color: var(--sand); }
.section--light .gold { color: var(--taupe); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--text-soft); line-height: 1.7; text-wrap: pretty; }
.section--light .lead { color: rgba(10, 13, 11, 0.72); }
p { text-wrap: pretty; }
.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--text); font-weight: 600; }
.section--light .prose strong { color: var(--ink); }
.prose em { color: var(--sand); font-style: italic; }
.section--light .prose em { color: var(--taupe); }
.prose u { text-decoration-color: var(--sand); text-underline-offset: 3px; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem; border-radius: var(--radius-pill);
  min-height: 52px; position: relative; isolation: isolate;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
  text-align: center;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn--primary {
  background: linear-gradient(135deg, var(--sand-light), var(--sand));
  color: var(--ink); box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -16px rgba(198, 184, 146, 0.6); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); background: var(--glass); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--sand); color: var(--sand-light); }
.section--light .btn--ghost { color: var(--ink); border-color: rgba(10, 13, 11, 0.2); }
.section--light .btn--ghost:hover { border-color: var(--taupe); color: var(--taupe); }
.btn--lg { font-size: 1.05rem; padding: 1.1rem 2.1rem; min-height: 58px; }
.btn--block { width: 100%; }
.btn--wa { background: linear-gradient(135deg, #2ee36f, #12a150); color: #04240f; box-shadow: 0 16px 40px -18px rgba(37, 211, 102, 0.6); }
.btn--wa:hover { transform: translateY(-2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.cta-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; display: flex; align-items: center; gap: 0.45rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 12, 17, 0.82); backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--border-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img { height: 90px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  font-size: 0.92rem; font-weight: 500; color: var(--text-soft);
  padding: 0.5rem 0.85rem; border-radius: var(--radius-pill); position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link.active { color: var(--sand-light); }
.nav__actions { display: flex; align-items: center; gap: 0.7rem; }
.nav__cta { padding: 0.7rem 1.35rem; min-height: 46px; font-size: 0.92rem; }
.nav__actions .nav__cta { display: none; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border-soft); }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: clamp(3rem, 7vw, 6rem); position: relative; overflow-x: clip; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { margin-bottom: 1.5rem; }
.hero__sub { max-width: 40ch; margin-bottom: 0.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.25rem; }
.hero__trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; color: var(--text-soft); }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--sand); }

/* Frame de mídia (vídeo / imagem) */
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: var(--bg-2);
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.media-frame--video { aspect-ratio: 9 / 16; max-width: 340px; margin-inline: auto; }
.media-frame--video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-frame--portrait { aspect-ratio: 4 / 5; }
.media-frame--portrait img { width: 100%; height: 100%; object-fit: cover; }
.media-glow { position: absolute; inset: -30% 0 auto 0; height: 60%; background: radial-gradient(closest-side, rgba(166, 155, 124, 0.28), transparent); filter: blur(10px); z-index: -1; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem); backdrop-filter: blur(10px);
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.card:hover { transform: translateY(-5px); border-color: var(--border); background: var(--glass-2); }
.card__ico {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(166, 155, 124, 0.22), rgba(166, 155, 124, 0.06));
  border: 1px solid var(--border); color: var(--sand-light); margin-bottom: 1.1rem;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; }
.section--light .card { background: #fff; border-color: rgba(10,13,11,0.08); box-shadow: 0 20px 50px -34px rgba(10,43,64,0.4); }
.section--light .card p { color: rgba(10,13,11,0.66); }
.section--light .card__ico { color: var(--taupe); }

/* Lista de features / especialidades */
.feature-list { display: grid; gap: 0.9rem; }
.feature-list--2 { grid-template-columns: 1fr 1fr; }
.feature-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1.05rem 1.2rem; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--border-soft);
  transition: border-color var(--t), transform var(--t), background var(--t);
}
.feature-item:hover { border-color: var(--border); transform: translateX(3px); background: var(--glass-2); }
.feature-item__mark { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(166,155,124,0.16); color: var(--sand-light); margin-top: 1px; }
.feature-item__mark svg { width: 15px; height: 15px; }
.feature-item p { font-size: 0.96rem; color: var(--text-soft); }
.feature-item strong { color: var(--text); font-weight: 600; }
.section--light .feature-item { background: #fff; border-color: rgba(10,13,11,0.08); }
.section--light .feature-item p { color: rgba(10,13,11,0.7); }
.section--light .feature-item strong { color: var(--ink); }

/* Selos de prova (números) */
.stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--sand-light); line-height: 1; letter-spacing: -0.02em; }
.stat__label { font-size: 0.9rem; color: var(--text-soft); margin-top: 0.4rem; }

/* Callout / destaque */
.callout {
  border-left: 3px solid var(--sand); padding: 0.4rem 0 0.4rem 1.4rem;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.35; color: var(--text); letter-spacing: -0.01em;
}

/* ---------- Formulário ---------- */
.form-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem); backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.form { display: grid; gap: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: 1.25rem 1rem 0.55rem; color: var(--text); font-size: 0.98rem;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  min-height: 58px;
}
.field textarea { min-height: 120px; resize: vertical; padding-top: 1.5rem; }
.field label {
  position: absolute; left: 1rem; top: 1.05rem; color: var(--muted); font-size: 0.98rem;
  pointer-events: none; transition: transform var(--t-fast), color var(--t-fast), font-size var(--t-fast);
  transform-origin: left top;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sand); background: rgba(166, 155, 124, 0.07); box-shadow: 0 0 0 3px rgba(166, 155, 124, 0.14); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:valid + label, .field.filled label {
  transform: translateY(-0.7rem) scale(0.78); color: var(--sand-light);
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #E9756B; }
.field__msg { font-size: 0.78rem; margin-top: 0.35rem; min-height: 1em; color: #E9756B; }
.field__msg.ok { color: #67C98C; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.82rem; color: var(--text-soft); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--sand); flex-shrink: 0; }
.consent a { color: var(--sand-light); text-decoration: underline; text-underline-offset: 2px; }
.consent.invalid { color: #E9756B; }
.form-status { font-size: 0.9rem; padding: 0.8rem 1rem; border-radius: 12px; display: none; }
.form-status.show { display: block; }
.form-status.err { background: rgba(233, 117, 107, 0.12); color: #F0A79F; border: 1px solid rgba(233,117,107,0.3); }
.form-status.ok { background: rgba(103, 201, 140, 0.12); color: #8FE0AC; border: 1px solid rgba(103,201,140,0.3); }

/* ---------- Contato: métodos ---------- */
.contact-methods { display: grid; gap: 0.9rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  border-radius: 14px; border: 1px solid var(--border-soft); background: var(--glass);
  transition: border-color var(--t), transform var(--t);
}
.contact-item:hover { border-color: var(--sand); transform: translateY(-2px); }
.contact-item__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(166,155,124,0.14); color: var(--sand-light); flex-shrink: 0; }
.contact-item__ico svg { width: 22px; height: 22px; }
.contact-item__k { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.1rem; }
.contact-item__v { display: block; font-weight: 600; color: var(--text); }

/* ---------- Rodapé ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border-soft); padding-block: clamp(2.5rem, 5vw, 3.5rem); position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.footer__brand img { height: 96px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.88rem; color: rgba(242,242,242,0.6); max-width: 34ch; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.85rem; }
.footer__col p, .footer__col a { font-size: 0.92rem; color: rgba(242,242,242,0.78); line-height: 1.7; display: block; }
.footer__col a:hover { color: var(--sand-light); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.14); color: var(--cream); transition: all var(--t-fast); }
.footer__social a:hover { background: var(--sand); color: var(--ink); border-color: var(--sand); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { margin-top: clamp(2rem, 4vw, 2.75rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; }
.footer__bottom p, .footer__bottom a { font-size: 0.8rem; color: rgba(242,242,242,0.5); }
.footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--sand-light); }

/* ---------- Convênios (carrossel infinito) ---------- */
.convenios { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); overflow-x: clip; }
.convenios__label { text-align: center; font-family: var(--font-body); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.marquee { position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; align-items: center; width: max-content; gap: clamp(2.5rem, 6vw, 5rem); will-change: transform; animation: marquee var(--marquee-dur, 34s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 44px; width: auto; flex-shrink: 0; opacity: 0.7; transition: opacity var(--t); filter: brightness(0) invert(1); }
.marquee__track img:hover { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 620px) { .marquee__track img { height: 34px; } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; row-gap: 1.5rem; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #2ee36f, #12a150); color: #fff;
  box-shadow: 0 12px 34px -8px rgba(18, 161, 80, 0.7); transition: transform var(--t-fast);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0% { box-shadow: 0 12px 34px -8px rgba(18,161,80,0.7), 0 0 0 0 rgba(46,227,111,0.5); } 70% { box-shadow: 0 12px 34px -8px rgba(18,161,80,0.7), 0 0 0 16px rgba(46,227,111,0); } 100% { box-shadow: 0 12px 34px -8px rgba(18,161,80,0.7), 0 0 0 0 rgba(46,227,111,0); } }

/* Sticky CTA mobile */
.sticky-cta { display: none; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%) translateY(160%);
  z-index: 95; width: min(680px, calc(100% - 1.5rem));
  background: rgba(10, 25, 38, 0.94); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 16px; padding: 1.1rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.25rem;
  box-shadow: var(--shadow); transition: transform 0.5s var(--ease-out);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: 0.84rem; color: var(--text-soft); flex: 1 1 300px; }
.cookie p a { color: var(--sand-light); text-decoration: underline; }
.cookie__actions { display: flex; gap: 0.6rem; }
.cookie .btn { min-height: 42px; padding: 0.5rem 1.15rem; font-size: 0.85rem; }

/* ---------- Animações (scroll reveal + coreografia) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--left.in, .reveal--right.in { transform: none; }
.parallax { will-change: transform; }

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  :root { --nav-h: 82px; }
  .nav__brand img { height: 58px; }
  .nav__menu { display: none; }
  .nav__actions .nav__cta { display: inline-flex; }
  .nav__toggle { display: block; }
  .nav__actions { gap: 0.5rem; }
  .nav.open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.2rem;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(7, 12, 17, 0.97); backdrop-filter: blur(18px);
    padding: 1rem var(--pad) 1.5rem; border-bottom: 1px solid var(--border-soft);
  }
  .nav.open .nav__menu .nav__link { padding: 0.85rem 0.5rem; font-size: 1rem; border-bottom: 1px solid var(--border-soft); }
  .nav.open .nav__menu .nav__cta { display: inline-flex; margin-top: 0.8rem; }
  .hero__grid, .grid-2, .grid-2--wide { grid-template-columns: 1fr; }
  .grid-2 .media, .grid-2--flip .media, .hero__media { order: -1; }
  .grid-2--flip .col-text { order: 0; }
  .cards--3 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 89;
    padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(7, 12, 17, 0.9); backdrop-filter: blur(14px); border-top: 1px solid var(--border-soft);
  }
  .sticky-cta .btn { width: 100%; }
  .wa-float { bottom: calc(76px + env(safe-area-inset-bottom)); }
}
@media (max-width: 620px) {
  .form-grid, .feature-list--2, .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .hero__trust { gap: 0.9rem 1.4rem; }
}

/* Foco acessível */
:focus-visible { outline: 2px solid var(--sand-light); outline-offset: 3px; border-radius: 6px; }

/* Reduced motion — degradação elegante */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .wa-float { animation: none; }
}
