/* =====================================================================
   Nutring — landing page
   Design system espelhado do app (shadcn zinc dark + acento lime):
   fundo #09090b, borda #27272a, lime-400 #a3e635, macros violeta/azul,
   Inter (corpo) + Manrope (display), raios 14–20.
   ===================================================================== */

:root {
  --bg: #09090b;
  --card: #101013;
  --card-2: #141417;
  --border: #27272a;
  --secondary: #27272a;
  --fg: #fafafa;
  --muted: #a1a1aa;

  --accent: #a3e635;      /* lime-400 (tom dark do app) */
  --accent-deep: #65a30d; /* lime-600 */
  --kcal: #fbbf24;        /* âmbar (tom dark) */
  --protein: #a78bfa;     /* violeta (tom dark) */
  --carbs: #38bdf8;       /* azul céu (tom dark) */
  --positive: #34d399;

  --radius: 16px;
  --radius-lg: 20px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Manrope", var(--font-body);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* garante que [hidden] vença classes com display próprio (.meal-tile, .ai-overlay) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- utilitários ---------- */

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.muted { color: var(--muted); }
.accent-text { color: var(--accent); }
.accent { color: var(--accent); }
.kcal-c { color: var(--kcal); }

.icon, .icon-sm, .icon-xs, .icon-lg {
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}
.icon    { width: 22px; height: 22px; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 12px; height: 12px; }
.icon-lg { width: 32px; height: 32px; }

.dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; margin-right: 6px; flex: none;
}
.accent-bg  { background: var(--accent); }
.protein-bg { background: var(--protein); }
.carbs-bg   { background: var(--carbs); }
.kcal-bg    { background: var(--kcal); }

/* ---------- tipografia ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.5px; }

h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.05rem; }

.lead { color: var(--muted); font-size: 1.08rem; max-width: 34rem; }
.section-lead { color: var(--muted); max-width: 38rem; margin-top: 12px; }


/* ---------- botões (estilo shadcn) ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }

.btn-primary {
  background: var(--accent); color: #131303;
  box-shadow: 0 0 0 0 rgba(163, 230, 53, 0);
}
.btn-primary:hover {
  background: #b5f04d;
  box-shadow: 0 6px 28px -6px rgba(163, 230, 53, 0.45);
}

.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--secondary); color: var(--fg); }

.btn-outline { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--fg);
}
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.5px; }
.brand-logo { display: block; height: 26px; width: auto; }
.brand-logo-sm { height: 22px; }

.site-nav { display: flex; gap: 4px; }
.site-nav a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 8px 12px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--fg); background: var(--secondary); }

@media (max-width: 720px) { .site-nav { display: none; } }

/* ---------- hero ---------- */

.hero { padding: 80px 0 48px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone { order: 2; justify-self: center; }
}

.hero-copy h1 { margin-bottom: 18px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { margin-top: 22px; font-size: 0.88rem; }

/* ---------- phone mockup ---------- */

.hero-phone { position: relative; }
.phone {
  width: 320px; margin: 0 auto;
  background: #050506;
  border: 1px solid #2e2e33;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), inset 0 0 0 2px #17171a;
  position: relative;
}
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; border-radius: 999px;
  background: #050506; z-index: 5;
}
.phone-screen {
  position: relative; overflow: hidden;
  background: var(--bg);
  border-radius: 36px;
  height: 620px;
  padding: 52px 16px 16px;
  display: flex; flex-direction: column; gap: 12px;
}

.ph-header { display: flex; align-items: center; justify-content: space-between; }
.ph-brand { display: inline-flex; align-items: center; }
.ph-brand img { display: block; height: 18px; width: auto; }
.streak-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  font-size: 0.75rem; font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.streak-chip.bump { transform: scale(1.18); }

/* card do anel */
.ph-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
}
.ring-card { display: flex; gap: 14px; align-items: center; }

.ring-wrap { position: relative; width: 108px; height: 108px; flex: none; }
.ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--secondary); stroke-width: 10; }
.ring-fill {
  fill: none; stroke: var(--accent); stroke-width: 10; stroke-linecap: round;
  stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-center strong { font-size: 1.35rem; line-height: 1; }
.ring-center small { color: var(--muted); font-size: 0.68rem; margin-top: 2px; }

.ring-side { flex: 1; min-width: 0; }
.ring-headline { font-size: 0.95rem; }
.ring-detail { color: var(--muted); font-size: 0.72rem; margin: 2px 0 10px; }

.macro-row { display: flex; flex-direction: column; gap: 5px; }
.macro-line {
  display: flex; justify-content: space-between; align-items: center; gap: 6px;
  font-size: 0.66rem; white-space: nowrap;
}
.macro-label { display: inline-flex; align-items: center; color: var(--muted); font-weight: 600; }
.macro-num { color: var(--muted); font-variant-numeric: tabular-nums; }
.bar { height: 5px; border-radius: 999px; background: var(--secondary); overflow: hidden; }
.bar-fill {
  height: 100%; width: 0%; border-radius: 999px;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-section-title {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  margin-top: 2px;
}
.ph-section-title .muted { font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; }

.meal-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.meal-tile {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 8px;
}
.meal-photo { width: 44px; height: 44px; border-radius: 10px; flex: none; }
.photo-bowl   { background: linear-gradient(135deg, #365314, #4d7c0f 55%, #a3e635); }
.photo-eggs   { background: linear-gradient(135deg, #713f12, #ca8a04 60%, #fde047); }
.photo-yogurt { background: linear-gradient(135deg, #4c1d95, #7c3aed 60%, #c4b5fd); }
.meal-info { display: flex; flex-direction: column; min-width: 0; }
.meal-info strong { font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.meal-info .muted { font-size: 0.7rem; }

.ai-tag {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(163, 230, 53, 0.12); color: var(--accent);
  font-size: 0.65rem; font-weight: 700;
}

.new-meal {
  border-color: rgba(163, 230, 53, 0.4);
  animation: mealIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes mealIn {
  from { opacity: 0; transform: translateY(-14px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

.fab {
  align-self: center;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #131303;
  border: none; border-radius: 999px;
  font-size: 0.85rem; font-weight: 800; font-family: var(--font-display);
  padding: 11px 20px; cursor: default;
  box-shadow: 0 8px 24px -6px rgba(163, 230, 53, 0.5);
  transition: transform 0.18s ease;
}
.fab.pressed { transform: scale(0.9); }

/* ---------- overlay de IA (réplica do AiThinkingOverlay) ---------- */

.ai-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 36px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ai-overlay.visible { opacity: 1; }

.ai-loader {
  position: relative; width: 160px; height: 160px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.ai-loader-sm { width: 118px; height: 118px; margin-bottom: 10px; }

.ai-halo {
  position: absolute; width: 70%; height: 70%; border-radius: 50%;
  box-shadow: 0 0 48px 10px rgba(163, 230, 53, 0.22);
  animation: haloPulse 1.1s ease-in-out infinite alternate;
}
@keyframes haloPulse {
  from { transform: scale(0.92); opacity: 0.7; }
  to   { transform: scale(1.04); opacity: 1; }
}

/* anel de gradiente girando (cauda transparente -> lime), como o _ArcPainter.
   O gradiente + máscara ficam no ::before para não cortar o glow da ponta. */
.ai-arc {
  position: absolute; inset: 6px;
  animation: arcSpin 1.4s linear infinite;
}
.ai-arc::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0.18turn, transparent 0turn, rgba(163, 230, 53, 0.05) 0.12turn, var(--accent) 0.8turn, transparent 0.82turn);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
}
/* ponta brilhante do arco: fica no topo do anel e gira junto com ele */
.ai-arc-head {
  position: absolute; top: 0; left: 50%;
  width: 9px; height: 9px;
  transform: translate(-50%, -1.5px);
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px 3px rgba(163, 230, 53, 0.8);
}
@keyframes arcSpin { to { transform: rotate(1turn); } }

.ai-core {
  width: 45%; height: 45%;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  animation: corePulse 1.1s ease-in-out infinite alternate;
}
@keyframes corePulse {
  from { transform: scale(0.92); }
  to   { transform: scale(1); }
}

.ai-message { font-size: 1.05rem; animation: msgIn 0.4s ease both; }
.ai-loader-sm + .ai-message, #phoneAiMessage { font-size: 0.9rem; }
.ai-message.swap { animation: msgIn 0.4s ease both; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.ai-sub { color: var(--muted); font-size: 0.75rem; }

/* ---------- seções ---------- */

.section { padding: 96px 0; }
.section h2 { max-width: 40rem; }

/* passos: lista simples com régua superior, sem caixas */
.how-steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 44px;
}
@media (max-width: 800px) { .how-steps { grid-template-columns: 1fr; gap: 24px; } }

.how-steps li {
  display: flex; gap: 14px; align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.how-num { color: var(--accent); font-size: 1.05rem; line-height: 1.5; }
.how-steps strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.how-steps p { color: var(--muted); font-size: 0.92rem; }

/* demo grande da IA */
.ai-demo { margin-top: 56px; }
.ai-demo-stage {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 400px;
  overflow: hidden;
}
.ai-demo-state {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 32px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.ai-demo-state.is-active { opacity: 1; }
.ai-demo-loading .btn { margin-top: 16px; }

.result-card {
  display: flex; gap: 20px; align-items: stretch;
  background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  max-width: 560px; width: 100%;
  animation: mealIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (max-width: 620px) { .result-card { flex-direction: column; } }
.result-photo {
  position: relative; flex: none;
  width: 180px; min-height: 160px; border-radius: 14px;
}
@media (max-width: 620px) { .result-photo { width: 100%; height: 140px; } }
.result-photo .ai-tag { position: absolute; left: 10px; bottom: 10px; margin: 0; background: rgba(9,9,11,0.72); }
.result-body { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.result-body h3 { font-size: 1.15rem; }
.result-kcal { display: flex; align-items: baseline; gap: 6px; }
.result-kcal strong { font-size: 2.2rem; line-height: 1; color: var(--kcal); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  font-size: 0.78rem; font-weight: 600;
}
.chip-kcal  { background: rgba(251, 191, 36, 0.12); }
.chip-carbs { background: rgba(56, 189, 248, 0.12); }

.result-added {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.85rem;
}

/* ---------- recursos: linhas alternadas de texto + tela do app ---------- */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  margin-top: 80px;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
}
.split-reverse .split-text { order: 2; }
@media (max-width: 860px) { .split-reverse .split-text { order: 0; } }

.split-text h3 { font-size: 1.45rem; margin-bottom: 12px; }
.split-text > p { color: var(--muted); max-width: 30rem; }

.check-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem;
}

/* fragmento de UI do app usado como "imagem" da linha */
.ui-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px;
  max-width: 430px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.ui-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.ui-card-head .display { font-size: 1.05rem; }
.ui-card-head .muted { font-size: 0.8rem; }
.ui-card .meal-tile { padding: 10px; }
.ui-card .meal-photo { width: 52px; height: 52px; }
.ui-card .meal-info strong { font-size: 0.92rem; }
.ui-card .meal-info .muted { font-size: 0.78rem; }
.ui-card .chips { margin-top: 6px; }

.chart-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.chart-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.chart-title { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.chart-big { font-size: 1.9rem; line-height: 1.15; }
.chart-big small { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--muted); letter-spacing: 0; }
.badge-positive {
  padding: 5px 12px; border-radius: 999px;
  background: rgba(52, 211, 153, 0.12); color: var(--positive);
  font-size: 0.78rem; font-weight: 700;
}

.bar-chart { position: relative; height: 220px; padding-right: 40px; }
.bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 100%; position: relative;
}
.bar-col {
  flex: 1; height: 0;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(to top, rgba(163, 230, 53, 0.25), var(--accent));
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar-chart.in-view .bar-col { height: var(--h); }
.bars .bar-col:nth-child(2)  { transition-delay: 0.05s; }
.bars .bar-col:nth-child(3)  { transition-delay: 0.1s; }
.bars .bar-col:nth-child(4)  { transition-delay: 0.15s; }
.bars .bar-col:nth-child(5)  { transition-delay: 0.2s; }
.bars .bar-col:nth-child(6)  { transition-delay: 0.25s; }
.bars .bar-col:nth-child(7)  { transition-delay: 0.3s; }
.bars .bar-col:nth-child(8)  { transition-delay: 0.35s; }
.bars .bar-col:nth-child(9)  { transition-delay: 0.4s; }
.bars .bar-col:nth-child(10) { transition-delay: 0.45s; }
.bars .bar-col:nth-child(11) { transition-delay: 0.5s; }
.bars .bar-col:nth-child(12) { transition-delay: 0.55s; }
.bars .bar-col:nth-child(13) { transition-delay: 0.6s; }
.bars .bar-col:nth-child(14) { transition-delay: 0.65s; }

/* barra de hoje: âmbar com glow, como no BarChart do app */
.bar-col.is-today {
  background: linear-gradient(to top, rgba(251, 191, 36, 0.35), var(--kcal));
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.45);
}

.goal-line {
  position: absolute; left: 0; right: 40px; bottom: var(--y);
  border-top: 2px dashed rgba(250, 250, 250, 0.25);
  z-index: 2;
}
.goal-line span {
  position: absolute; right: 0; top: -22px;
  color: var(--muted); font-size: 0.7rem; font-weight: 600;
}
.y-axis {
  position: absolute; top: 0; bottom: 0; right: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--muted); font-size: 0.7rem;
  text-align: right; width: 34px;
}

/* ---------- faixa de fatos ---------- */

.facts { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.facts-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-top: 40px; padding-bottom: 40px;
}
@media (max-width: 860px) { .facts-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .facts-inner { grid-template-columns: 1fr; } }
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact .display { font-size: 1.1rem; }
.fact .muted { font-size: 0.86rem; }

/* ---------- FAQ ---------- */

.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer;
  font-weight: 600; font-size: 0.98rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon-sm { color: var(--muted); transition: transform 0.25s ease; }
.faq-list details[open] summary .icon-sm { transform: rotate(180deg); }
.faq-list details p { padding: 0 20px 18px; color: var(--muted); font-size: 0.94rem; }

/* ---------- CTA final / footer ---------- */

.cta-final { padding-bottom: 120px; text-align: center; }
.cta-final h2 { margin: 0 auto; }
.cta-final .section-lead { margin: 12px auto 0; }
.cta-final .hero-ctas { justify-content: center; margin-top: 28px; }
.cta-note { margin-top: 16px; font-size: 0.82rem; }

.site-footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; font-size: 0.85rem;
}

/* ---------- reveal on scroll ---------- */

.reveal, .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal { transform: translateY(22px); }
.reveal-scale { transform: scale(0.96) translateY(16px); }
.reveal.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ---------- 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;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  .bar-chart .bar-col { height: var(--h); }
}
