/* ============================================================
   Slow Lua — folha de estilo única
   Lua = noite tropical: quente, noturna, precisa.
   Ordem: tokens → base → layout → componentes → páginas → utilitários
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --color-night: #232135;
  --color-night-2: #1A1828;
  --color-moon: #F5EDDA;
  --color-sand: #FBF5EC;
  --color-amber: #E8A54B;
  --color-leaf: #7FA08C;
  --color-ink: #2B2721;
  --color-ink-soft: #5A5248;
  --color-line: #E4DACB;
  --color-card: #FFFFFF;
  --color-wa: #25D366;
  --color-wa-dark: #128C4A;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --max-read-width: 700px;
  --max-page-width: 1240px;
  --radius: 14px;
  --radius-sm: 9px;
  --space-section: 100px;
  --shadow: 0 1px 2px rgba(35, 33, 53, .05), 0 12px 32px -18px rgba(35, 33, 53, .28);
  --shadow-lg: 0 2px 6px rgba(35, 33, 53, .06), 0 28px 60px -28px rgba(35, 33, 53, .38);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--color-sand);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.05rem, 1.35rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); }

p { margin: 0 0 1.15em; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

:focus-visible { outline: 3px solid var(--color-amber); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-night); color: var(--color-moon);
  padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--max-page-width); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: var(--max-read-width); }

section { padding: var(--space-section) 0; }
.section-alt { background: #fff; }
.section-night { background: var(--color-night); color: var(--color-moon); }
.section-night h1, .section-night h2, .section-night h3 { color: var(--color-moon); }

.eyebrow {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--color-amber); margin: 0 0 .9em;
}
.section-night .eyebrow { color: var(--color-amber); }

.lead { font-size: 1.12rem; color: var(--color-ink-soft); }
.section-night .lead { color: rgba(245, 237, 218, .82); }

/* ---------- 3. Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 245, 236, .9);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.head-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.18rem;
  text-decoration: none; color: var(--color-ink); letter-spacing: -.01em;
  margin-right: auto; white-space: nowrap;
}
.brand-mark {
  width: 26px; height: 26px; border-radius: 50%; flex: 0 0 26px;
  background: var(--color-night);
  box-shadow: inset -7px -3px 0 0 var(--color-moon);
}
.nav-list {
  display: flex; align-items: center; gap: 20px;
  list-style: none; margin: 0; padding: 0;
  font-size: .93rem; font-weight: 500;
}
.nav-list li { margin: 0; }
.nav-list a {
  text-decoration: none; color: var(--color-ink-soft);
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav-list a:hover { color: var(--color-ink); }
.nav-list a.active { color: var(--color-ink); border-bottom-color: var(--color-amber); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); padding: .45rem .6rem; cursor: pointer;
  font-size: .85rem; font-family: inherit; color: var(--color-ink);
}
.head-cta { display: none; }

.b2b-banner {
  background: var(--color-night); color: rgba(245, 237, 218, .9);
  font-size: .82rem; line-height: 1.5; text-align: center;
  padding: .6rem 22px;
}

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  padding: .82rem 1.5rem; border-radius: 999px;
  background: var(--color-moon); color: var(--color-night);
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--color-moon); color: var(--color-night); }
.btn-night { background: var(--color-night); color: var(--color-moon); }
.btn-amber { background: var(--color-amber); color: #2B2113; }
.btn-ghost {
  background: transparent; color: inherit;
  border-color: currentColor; opacity: .82;
}
.btn-ghost:hover { opacity: 1; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 78% 12%, #33304B 0%, var(--color-night) 46%, var(--color-night-2) 100%);
  color: var(--color-moon);
  padding: clamp(76px, 11vw, 132px) 0 clamp(84px, 12vw, 140px);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 46% at 84% 6%, rgba(232, 165, 75, .22), transparent 62%),
    radial-gradient(46% 40% at 8% 96%, rgba(127, 160, 140, .18), transparent 66%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; gap: clamp(34px, 5vw, 62px);
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
}
.hero h1 { color: var(--color-moon); margin-bottom: .5em; }
.hero .lead { color: rgba(245, 237, 218, .84); max-width: 46ch; }
.hero .eyebrow { color: var(--color-amber); }
.hero-cta { margin-top: 1.9rem; }
.hero-note {
  margin-top: 1.5rem; font-size: .86rem; color: rgba(245, 237, 218, .66);
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none;
  margin: 1.6rem 0 0; padding: 0; font-size: .87rem; color: rgba(245, 237, 218, .78);
}
.hero-trust li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.hero-trust li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-amber); flex: 0 0 6px;
}

/* Fase da lua — ciclo lento de luz e sombra em 20s (redução de movimento no fim do arquivo) */
.moon-stage {
  position: relative; justify-self: center;
  width: min(340px, 74vw); aspect-ratio: 1;
}
.moon-stage::before {
  content: ''; position: absolute; inset: -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 165, 75, .26), transparent 62%);
  animation: moonGlow 20s ease-in-out infinite;
}
.moon-body {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(150deg, #FFFBF0 0%, var(--color-moon) 42%, #D9C9A8 100%);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .8), inset 0 0 60px rgba(255, 255, 255, .5);
}
.moon-body::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--color-night);
  animation: moonPhase 20s ease-in-out infinite;
}
.moon-body::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(120, 108, 92, .22) 0 7%, transparent 8%),
    radial-gradient(circle at 60% 62%, rgba(120, 108, 92, .16) 0 11%, transparent 12%),
    radial-gradient(circle at 46% 74%, rgba(120, 108, 92, .12) 0 5%, transparent 6%);
}
@keyframes moonPhase {
  0%, 100% { transform: translateX(96%); opacity: .96; }
  50% { transform: translateX(6%); opacity: .5; }
}
@keyframes moonGlow {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

/* ---------- 6. Cartões / grelhas ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--color-card); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card-ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(232, 165, 75, .16); color: #8A5A12; margin-bottom: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.section-night .card {
  background: rgba(245, 237, 218, .06);
  border-color: rgba(245, 237, 218, .16);
  box-shadow: none;
}
.section-night .card .card-ico { background: rgba(232, 165, 75, .2); color: var(--color-amber); }

.stat-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.stat { text-align: center; padding: 22px 14px; border-radius: var(--radius); background: rgba(35, 33, 53, .04); }
.stat .num {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); line-height: 1.1; color: var(--color-night);
}
.stat .lab { display: block; font-size: .85rem; color: var(--color-ink-soft); margin-top: .45rem; }
.section-night .stat { background: rgba(245, 237, 218, .07); }
.section-night .stat .num { color: var(--color-moon); }
.section-night .stat .lab { color: rgba(245, 237, 218, .72); }

/* ---------- 7. Declaração de marca ---------- */
.statement {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 3.4vw, 3.5rem);
  line-height: 1.1; letter-spacing: -.02em; max-width: 20ch; margin: 0;
}
.statement-sub { max-width: 52ch; margin-top: 1.4rem; color: var(--color-ink-soft); }

/* ---------- 8. Tabelas ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.spec {
  width: 100%; border-collapse: collapse; font-size: .95rem;
  background: var(--color-card); border: 1px solid var(--color-line);
  border-radius: var(--radius); overflow: hidden;
}
table.spec th, table.spec td { padding: .85rem 1.05rem; text-align: left; border-bottom: 1px solid var(--color-line); vertical-align: top; }
table.spec tbody tr:last-child th, table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec th {
  width: 42%; font-weight: 600; color: var(--color-ink-soft);
  background: rgba(35, 33, 53, .025);
}
table.spec td { font-weight: 500; }

/* ---------- 9. Placeholder TODO (dado nao confirmado = caixa amarela tracejada) ---------- */
.todo {
  display: inline-block;
  border: 2px dashed var(--color-amber);
  background: rgba(232, 165, 75, .1);
  color: #7A4E0C;
  border-radius: 6px;
  padding: .05em .5em;
  font-size: .9em;
  font-weight: 600;
  font-family: var(--font-body);
  word-break: break-word;
}
.todo-note {
  display: flex; gap: .8rem; align-items: flex-start;
  border: 2px dashed var(--color-amber);
  background: rgba(232, 165, 75, .08);
  border-radius: var(--radius); padding: 16px 18px;
  font-size: .9rem; color: #6E4709; margin: 1.4rem 0;
}
.todo-note strong { display: block; }

/* ---------- 10. Galeria de produto ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--color-night);
  border: 1px solid var(--color-line);
}
.ph img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ph:first-child { grid-column: span 3; }
.ph:first-child img { aspect-ratio: 16 / 9; }

/* ---------- 11. Bloco de resposta (AIO) ---------- */
.answer-block {
  background: var(--color-card); border-left: 4px solid var(--color-amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px; box-shadow: var(--shadow);
  font-size: 1.04rem;
}
.answer-block p { margin: 0; }

/* ---------- 12. FAQ ---------- */
.faq-list { margin-top: 1.6rem; }
.faq-group + .faq-group { margin-top: 2.4rem; }
.faq-cat-title { font-size: 1.25rem; color: var(--color-amber); }
.faq-q {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  margin: 1.5rem 0 .5rem; padding-top: 1.35rem;
  border-top: 1px solid var(--color-line);
}
.faq-q:first-of-type, .faq-group > h2 + .faq-q { border-top: 0; padding-top: 0; }
.faq-a { margin: 0; color: var(--color-ink-soft); }
.section-night .faq-q { border-top-color: rgba(245, 237, 218, .18); }
.section-night .faq-a { color: rgba(245, 237, 218, .8); }

/* ---------- 13. Trilha de navegacao ---------- */
.breadcrumb {
  font-size: .83rem; color: var(--color-ink-soft);
  padding: 18px 0 0; margin: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .2rem .55rem;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: .55rem; opacity: .5; }
.section-night .breadcrumb { color: rgba(245, 237, 218, .7); }

/* ---------- 14. Formularios ---------- */
.form-card {
  background: var(--color-card); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; }
.field .hint { font-weight: 400; color: var(--color-ink-soft); font-size: .82rem; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--color-ink);
  background: var(--color-sand); border: 1px solid var(--color-line);
  border-radius: var(--radius-sm); padding: .75rem .9rem; line-height: 1.5;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(232, 165, 75, .22);
}
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--color-ink-soft); margin-top: .9rem; }
.form-success {
  display: none; background: rgba(127, 160, 140, .14);
  border: 1px solid var(--color-leaf); border-radius: var(--radius);
  padding: 18px 20px; color: #40604F; font-size: .95rem;
}
.form-success.show { display: block; }
.form-err { color: #A63A2B; font-size: .9rem; margin-top: .8rem; }
.form-err[hidden] { display: none; }

/* Bloco de WhatsApp */
.wa-block {
  background: linear-gradient(160deg, rgba(37, 211, 102, .12), rgba(37, 211, 102, .04));
  border: 1px solid rgba(37, 211, 102, .38);
  border-radius: var(--radius); padding: 24px 26px;
}
.wa-block h2, .wa-block h3 { margin-bottom: .3em; }
.btn-wa {
  background: var(--color-wa); color: #052E1A; font-weight: 700;
  padding: .95rem 1.7rem; font-size: 1rem;
}
.btn-wa:hover { background: #1FBF5C; }
.wa-number { font-family: var(--font-body); font-weight: 600; letter-spacing: .01em; }

/* ---------- 15. CTA fixo (mobile) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(35, 33, 53, .96); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245, 237, 218, .16);
}
.sticky-cta .btn { flex: 1 1 0; padding: .8rem 1rem; font-size: .95rem; }
.sticky-cta .btn-wa { flex: 1.15 1 0; }

/* ---------- 16. Rodape ---------- */
.site-foot { background: var(--color-night-2); color: rgba(245, 237, 218, .74); padding: 60px 0 34px; font-size: .9rem; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr)); gap: 34px; }
.foot-brand { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-moon); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.site-foot h4 { color: var(--color-moon); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; margin-bottom: .9rem; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: .5rem; }
.site-foot a { color: rgba(245, 237, 218, .74); text-decoration: none; }
.site-foot a:hover { color: var(--color-moon); text-decoration: underline; }
.foot-contact a { font-weight: 600; color: var(--color-moon); }
.footer-maker {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(245, 237, 218, .12);
  font-size: .82rem; color: rgba(245, 237, 218, .5);
}
.foot-legal {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(245, 237, 218, .12);
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; align-items: center;
  font-size: .82rem; color: rgba(245, 237, 218, .5);
}
.foot-legal ul { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; padding: 0; margin: 0; }

/* ---------- 17. 404 ---------- */
.error-links { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .9rem; }
.error-links a { color: var(--color-amber); text-decoration: none; }
.error-links a:hover { text-decoration: underline; }

/* ---------- 18. Etapas (OEM) ---------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 1.8rem 3.2rem; margin: 0;
  border-left: 2px solid var(--color-line);
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute; left: -1.05rem; top: -.15rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--color-night); color: var(--color-moon);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
}
.steps li strong { display: block; font-family: var(--font-display); font-size: 1.12rem; margin-bottom: .2rem; }

/* ---------- 19. Blocos auxiliares ---------- */
.note {
  border-left: 3px solid var(--color-leaf); background: rgba(127, 160, 140, .1);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .93rem; color: #3D5A49; margin: 1.6rem 0;
}
.note strong { color: #2E4638; }
.warn {
  border-left: 3px solid #C0562F; background: rgba(192, 86, 47, .08);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .93rem; color: #7E3A1E; margin: 1.6rem 0;
}

/* ---------- 19b. Catalogo de produtos ---------- */
.pgrid {
  display: grid; gap: 22px; margin-top: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pcard {
  display: flex; flex-direction: column;
  background: var(--color-card); border: 1px solid var(--color-line);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pcard:hover, .pcard:focus-visible {
  transform: translateY(-3px);
  border-color: var(--color-amber); box-shadow: var(--shadow-lg);
}
.pcard-ph {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--color-night);
}
.pcard-ph img { width: 100%; height: 100%; object-fit: cover; }
.pcard-body {
  padding: 20px 22px 22px; display: flex; flex-direction: column;
  flex: 1 1 auto; gap: .3rem;
}
.pcard-sku {
  margin: 0; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; color: var(--color-amber);
}
.pcard-body h3 { font-size: 1.06rem; margin: 0; }
.pcard-cat { margin: 0; font-size: .82rem; color: var(--color-ink-soft); }
.pcard-tag { margin: .25rem 0 .7rem; font-size: .93rem; color: var(--color-ink-soft); }
.pcard-meta {
  margin: auto 0 0; padding-top: .9rem; border-top: 1px solid var(--color-line);
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem; font-size: .85rem;
}
.pcard-meta > div { margin: 0; }
.pcard-meta dt {
  font-size: .69rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--color-ink-soft);
}
.pcard-meta dd { margin: .1rem 0 0; font-weight: 600; color: var(--color-ink); }
.vazio { color: var(--color-ink-soft); font-style: italic; font-weight: 400; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 20. Responsivo ---------- */
@media (max-width: 1020px) {
  .nav-list { gap: 15px; font-size: .88rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .moon-stage { width: min(270px, 58vw); order: -1; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --space-section: 60px; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-sand); border-bottom: 1px solid var(--color-line);
    padding: 6px 22px 14px; display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list li { border-bottom: 1px solid var(--color-line); }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-list a { display: block; padding: .85rem 0; }
  .nav-list a.active { border-bottom-color: transparent; color: var(--color-amber); }
  .grid-2, .grid-3, .stat-band { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ph:first-child { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 78px; }
  .lead { font-size: 1.05rem; }
  h1 { font-size: clamp(1.85rem, 1.3rem + 4.4vw, 2.5rem); }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .ph:first-child { grid-column: span 1; }
  .pgrid { grid-template-columns: 1fr; }
  .pcard-meta { grid-template-columns: 1fr; }
  .wrap { padding: 0 16px; }
}

/* ---------- 21. Impressao ---------- */
@media print {
  .site-head, .sticky-cta, .site-foot, .nav-toggle { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
}

/* ---------- 22. Reducao de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .moon-body::before { transform: translateX(52%); opacity: .82; }
  .moon-stage::before { opacity: .8; }
}
