/* ==========================================================================
   Clau Representações — design system
   Paleta derivada dos ativos: creme/grafite do wordmark Madellaine,
   terracota de marca (quente, própria da Clau) e verde do ponto do Mundo Céu.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

/* --- Tokens: tema claro (base) --- */
:root {
  --bg: #faf7f4;
  --bg-alt: #f2ece6;
  --surface: #ffffff;
  --text: #1a1817;
  --text-soft: #5b5350;
  --heading: #14100e;
  --border: #e4dad1;
  --accent: #ad4a2a;
  --accent-soft: #f6e6df;
  --accent-ink: #ffffff;
  --brand-green: #077a44;

  --shadow: 0 1px 2px rgb(26 24 23 / 6%), 0 4px 16px rgb(26 24 23 / 6%);
  --shadow-lift: 0 8px 24px rgb(26 24 23 / 10%), 0 24px 48px rgb(26 24 23 / 8%);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1140px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 7.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  color-scheme: light;
}

/* --- Tokens: tema escuro (padrão do projeto) --- */
:root[data-theme='dark'] {
  --bg: #141211;
  --bg-alt: #1c1918;
  --surface: #1e1b19;
  --text: #ece7e2;
  --text-soft: #a89f99;
  --heading: #fbf7f4;
  --border: #322c29;
  --accent: #e08a6b;
  --accent-soft: #2e211b;
  --accent-ink: #141211;
  --brand-green: #12b869;

  --shadow: 0 1px 2px rgb(0 0 0 / 40%), 0 4px 16px rgb(0 0 0 / 32%);
  --shadow-lift: 0 8px 24px rgb(0 0 0 / 45%), 0 24px 48px rgb(0 0 0 / 35%);

  color-scheme: dark;
}

/* --- Reset enxuto --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

/* --- Utilitários --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.7rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

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

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-head h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); }
.section-head p { margin-top: 1rem; color: var(--text-soft); font-size: 1.05rem; }

/* --- Botões --- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn svg { width: 1.15em; height: 1.15em; fill: currentColor; }

/* --- Loader --- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
#loader.is-done { opacity: 0; visibility: hidden; }
#loader span {
  width: 34px; height: 34px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Header --- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  padding-block: 0.6rem;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand strong { font-weight: 600; }
.brand span { color: var(--accent); font-size: 0.8em; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.nav a:hover { color: var(--accent); background: var(--accent-soft); }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.theme-toggle .icon-moon { display: none; }
:root[data-theme='dark'] .theme-toggle .icon-sun { display: none; }
:root[data-theme='dark'] .theme-toggle .icon-moon { display: block; }

.menu-toggle { display: none; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 14vw, 9rem) var(--section-y);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 85% 15%, var(--accent-soft) 0%, transparent 55%),
    radial-gradient(90% 70% at 10% 90%, color-mix(in srgb, var(--brand-green) 12%, transparent) 0%, transparent 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.4rem);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero__stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--heading);
  line-height: 1;
}
.hero__stats div span { font-size: 0.85rem; color: var(--text-soft); }

.hero__portrait {
  position: relative;
  border-radius: calc(var(--radius) * 1.6);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(160deg, var(--accent-soft), var(--bg-alt));
}
.hero__portrait img { width: 100%; object-fit: cover; }

/* --- Sobre --- */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__media img { width: 100%; object-fit: cover; }
.about__text p + p { margin-top: 1.1rem; }
.about__text p { color: var(--text-soft); }
.about__text strong { color: var(--text); font-weight: 600; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; list-style: none; padding: 0; }
.pill-list li {
  padding: 0.45rem 0.95rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 600;
}

/* --- Marcas --- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--accent); }

.brand-card__media {
  aspect-ratio: 382 / 495;
  background: var(--bg-alt);
  overflow: hidden;
}
.brand-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.brand-card:hover .brand-card__media img { transform: scale(1.05); }

/* Card sem foto de campanha: wordmark em fundo neutro. */
.brand-card__mark {
  display: grid;
  place-items: center;
  aspect-ratio: 382 / 495;
  padding: 2rem;
  background: linear-gradient(155deg, var(--bg-alt), var(--surface));
}
.brand-card__mark img { max-width: 78%; max-height: 45%; object-fit: contain; }
.brand-card__mark .wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.1rem);
  font-weight: 600;
  color: var(--heading);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand-card__mark .wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

.brand-card__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.brand-card__body h3 { font-size: 1.2rem; }
.brand-card__body p { font-size: 0.92rem; color: var(--text-soft); flex: 1; }
.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.35rem;
}
.brand-card__link svg { width: 0.95em; height: 0.95em; stroke: currentColor; fill: none; stroke-width: 2; }

/* Logo em fundo escuro precisa de placa clara para não sumir. */
:root[data-theme='dark'] .brand-card__mark img { filter: none; }
:root[data-theme='dark'] .brand-card__mark--invert img {
  background: #faf7f4;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  max-width: 88%;
}

/* --- Serviços --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.service {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 1.1rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
}
.service__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.service h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.service p { font-size: 0.94rem; color: var(--text-soft); }

/* --- Faixa de destaque (parallax) --- */
.quote {
  position: relative;
  padding-block: clamp(4rem, 9vw, 6.5rem);
  background: var(--bg-alt);
  overflow: hidden;
  text-align: center;
}
.quote__deco {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(60% 60% at 20% 30%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
    radial-gradient(50% 50% at 80% 70%, color-mix(in srgb, var(--brand-green) 14%, transparent), transparent 70%);
  will-change: transform;
}
.quote .container { position: relative; z-index: 1; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 2vw, 2.35rem);
  line-height: 1.3;
  color: var(--heading);
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}
.quote figcaption { margin-top: 1.5rem; font-size: 0.92rem; color: var(--text-soft); letter-spacing: 0.06em; }

/* --- Galeria --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }

/* --- Lightbox --- */
.lightbox {
  width: min(94vw, 900px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgb(10 8 7 / 82%); backdrop-filter: blur(4px); }
.lightbox__img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.lightbox__bar { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.lightbox__bar button {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox__bar button:hover { border-color: var(--accent); color: var(--accent); }
.lightbox__bar svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.lightbox__count { font-size: 0.9rem; color: #e9e2dc; min-width: 4ch; text-align: center; }

/* --- Atendimento / região --- */
.area__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.area__card {
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.area__card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.area__list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0.85rem; }
.area__list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--text-soft); }
.area__list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.15rem; stroke: var(--accent); fill: none; stroke-width: 1.8; }

/* --- FAQ --- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 0;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 11px; height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding-bottom: 1.15rem; color: var(--text-soft); font-size: 0.97rem; }

/* --- CTA final --- */
.cta {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  text-align: center;
  background: linear-gradient(150deg, var(--accent-soft), var(--bg-alt));
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid var(--border);
}
.cta h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.9rem); margin-bottom: 1rem; }
.cta p { max-width: 52ch; margin: 0 auto 2rem; color: var(--text-soft); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* --- Footer --- */
.footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}
.footer__about p { font-size: 0.94rem; color: var(--text-soft); margin-top: 0.9rem; max-width: 38ch; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer a { color: var(--text-soft); text-decoration: none; font-size: 0.94rem; transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer__contact li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.94rem; color: var(--text-soft); }
.footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--accent); fill: none; stroke-width: 1.8; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* Empurra o crédito para a direita; no mobile a linha quebra e ele volta ao fluxo. */
.footer__credit { margin-left: auto; }
.footer__credit a {
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.footer__credit a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 700px) {
  .footer__credit { margin-left: 0; }
}

/* --- WhatsApp flutuante --- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: #25d366;
  color: #0b1f14;
  border-radius: 50%;
  box-shadow: var(--shadow-lift);
  transition: transform 0.25s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Responsivo --- */
@media (max-width: 900px) {
  .hero__grid, .about__grid, .area__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 420px; margin-inline: auto; order: -1; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .menu-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.25rem;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lift);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }
  .nav[data-open='true'] { transform: none; }
  .nav a { padding: 0.9rem 1rem; font-size: 1.05rem; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions, .cta__actions { flex-direction: column; }
}

/* --- Movimento reduzido --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .quote__deco { transform: none !important; }
}

@media print {
  .header, .wa-float, #loader, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
