/* ============================================================
   LIFE DRINK BAR — Landing Page
   Design system: roxo/púrpura (degradê) + champanhe
   Fonte: Jost (fina, sem serifa) + Inter
   ============================================================ */

:root {
  /* Cores — base */
  --plum:      #160419;  /* fundo principal (roxo quase preto) */
  --plum-2:    #1d0a24;  /* seções alternadas */
  --surface:   #25112e;
  --surface-2: #311a3b;
  --line:      rgba(226, 150, 234, 0.18);

  /* Magenta / púrpura (base #c846d3) */
  --purple:       #c846d3;
  --purple-light: #e29bea;
  --purple-deep:  #8a2aa0;
  --grad-text: linear-gradient(135deg, #f3bdf8 0%, #df74e9 45%, #c846d3 100%);
  --grad-btn:  linear-gradient(135deg, #d456e0 0%, #c846d3 42%, #9c2eb4 100%);

  /* Acentos da paleta */
  --gold:  #e8c68e;  /* champanhe — usado só em detalhes (estrelas) */
  --lilac: #f3e8ff;  /* lavanda clara */

  /* Texto */
  --text:      #f4ecfb;
  --text-soft: #cdbbdb;
  --text-mute: #9b89aa;

  /* Layout */
  --container: 1180px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:        0 24px 60px -20px rgba(0,0,0,0.7);
  --shadow-purple: 0 16px 40px -12px rgba(200,70,211,0.40);

  /* Tipografia */
  --font-display: "Jost", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--plum);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }
.text-gold {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 18px;
}

.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--grad-btn);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-purple);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -10px rgba(200,70,211,0.6); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--purple); color: var(--purple-light); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--sm { padding: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(22,4,25,0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); }
.logo__icon { font-size: 1.5rem; }
.logo__img { height: 40px; width: auto; display: block; }
.logo__img--footer { height: 48px; }
.logo__text { font-size: 1.35rem; font-weight: 500; letter-spacing: .3px; }
.logo__text span { color: var(--purple-light); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 0.95rem; color: var(--text-soft); transition: color .2s; font-weight: 400; }
.nav__link:hover { color: var(--purple-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--purple-light); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(200,70,211,0.20), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(176,51,196,0.14), transparent 55%),
    linear-gradient(180deg, var(--plum) 0%, var(--plum-2) 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(226,150,234,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero__media {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("../img/hero-poster.jpg");
  background-size: cover;
  background-position: center;
}
.hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--purple);
  mix-blend-mode: multiply;
}
/* Fallback: se o autoplay for bloqueado (ex.: iOS Low Power Mode), o JS oculta o vídeo e o poster aparece */
@media (prefers-reduced-motion: reduce) { .hero__media video { display: none; } }

.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__content, .hero__form-card { min-width: 0; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.hero__subtitle {
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-soft);
  max-width: 540px;
  font-weight: 300;
}
.hero__subtitle strong { font-weight: 500; color: var(--text); }
.hero__subtitle em { color: var(--purple-light); font-style: italic; }
.hero__highlights { margin-top: 26px; display: grid; gap: 10px; }
.hero__highlights li { color: var(--text-soft); font-size: 1rem; font-weight: 300; }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 30px;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-mute); font-size: 0.92rem;
}
.hero__trust strong { color: var(--text); font-weight: 600; }

/* Form card */
.hero__form-card {
  background: linear-gradient(165deg, rgba(49, 26, 59, 0.60), rgba(24, 12, 30, 0.66));
  backdrop-filter: blur(9px) saturate(125%);
  -webkit-backdrop-filter: blur(9px) saturate(125%);
  border: 1px solid rgba(226, 150, 234, 0.22);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero__form-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(160deg, rgba(226,150,234,0.55), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.form-card__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; }
.form-card__subtitle { color: var(--text-mute); font-size: 0.92rem; margin: 8px 0 22px; }
.form-card__note { text-align: center; color: var(--text-mute); font-size: 0.82rem; margin-top: 12px; }

.lead-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 0.82rem; color: var(--text-soft); font-weight: 500; }
.field input, .field select {
  width: 100%;
  padding: 13px 15px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: #7a6c87; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(200,70,211,0.18);
}
.field select { appearance: none; cursor: pointer; color-scheme: dark; }
.field select option { background-color: #1c0a24; color: var(--text); }
.field select option:disabled { color: var(--text-mute); }
.field input[type="date"] { color-scheme: dark; }

/* ---------- Stats ---------- */
.stats {
  background: var(--plum-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat__label { color: var(--text-mute); font-size: 0.88rem; margin-top: 8px; display: block; letter-spacing: .02em; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--plum-2); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section__title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 400; line-height: 1.18; letter-spacing: -0.3px; }
.section__lead { margin-top: 16px; color: var(--text-soft); font-size: 1.05rem; font-weight: 300; }
.section__lead em { color: var(--text-mute); font-size: 0.95rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: linear-gradient(165deg, var(--surface), var(--plum-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: var(--shadow); }
.card__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  background: rgba(200,70,211,0.12);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.96rem; font-weight: 300; }

/* ---------- Diferenciais ---------- */
.diff__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.diff__media { position: relative; }
.diff__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(200,70,211,0.22), transparent 50%),
    linear-gradient(160deg, var(--surface-2), #0c0410);
  display: grid; place-items: center;
  color: var(--text-mute);
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.diff__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.diff__badge {
  position: absolute; bottom: -22px; right: -16px;
  background: var(--grad-btn);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-purple);
  text-align: center;
}
.diff__badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; font-weight: 500; }
.diff__badge span { font-size: 0.78rem; font-weight: 500; }

.checklist { display: grid; gap: 18px; margin: 28px 0 32px; }
.checklist li { display: flex; gap: 16px; align-items: flex-start; }
.checklist li span { font-size: 1.4rem; flex-shrink: 0; }
.checklist li div { color: var(--text-soft); font-size: 0.96rem; font-weight: 300; }
.checklist li strong { display: block; color: var(--text); font-size: 1.02rem; margin-bottom: 2px; font-weight: 500; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; position: relative; padding: 0 10px; }
.step__num {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  color: var(--purple-light);
  border: 1px solid var(--purple);
  border-radius: 50%;
  background: rgba(200,70,211,0.10);
}
.step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.92rem; font-weight: 300; }

/* ---------- Depoimentos ---------- */
.testimonials { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.testimonial {
  flex: 1 1 320px;
  max-width: 372px;
  background: linear-gradient(165deg, var(--surface), var(--plum));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.testimonial blockquote { font-size: 1.02rem; color: var(--text); margin: 16px 0 20px; line-height: 1.6; font-weight: 300; }
.testimonial figcaption strong { display: block; color: var(--purple-light); font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.testimonial figcaption span { color: var(--text-mute); font-size: 0.85rem; }

/* ---------- Galeria de prints (depoimentos reais) ---------- */
.proof-gallery { columns: 3; column-gap: 20px; max-width: 1000px; margin: 0 auto; }
.proof-item {
  display: block; width: 100%; padding: 0; margin: 0 0 20px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: zoom-in; break-inside: avoid;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.proof-item:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: var(--shadow); }
.proof-item img { width: 100%; display: block; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 28px; background: rgba(8,2,10,0.92); backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: min(94vw, 460px); max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox__close {
  position: absolute; top: 16px; right: 26px;
  font-size: 2.6rem; line-height: 1; color: #fff; background: none; border: none; cursor: pointer;
}

@media (max-width: 980px) { .proof-gallery { columns: 2; } }
@media (max-width: 620px) { .proof-gallery { columns: 1; max-width: 400px; } }

/* ---------- Portfólio de vídeos ---------- */
.video-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1000px; margin: 0 auto; }
.video-item {
  position: relative; flex: 1 1 280px; max-width: 314px; aspect-ratio: 1 / 1;
  padding: 0; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; background: #0c0410;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.video-item:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: var(--shadow); }
.video-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.5)); pointer-events: none; }
.video-item__play {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 60px; height: 60px; display: grid; place-items: center;
  font-size: 1.2rem; color: #fff; padding-left: 4px;
  background: var(--grad-btn); border-radius: 50%; box-shadow: var(--shadow-purple);
  transition: transform .3s var(--ease);
}
.video-item:hover .video-item__play { transform: scale(1.12); }

.video-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8,2,10,0.94); backdrop-filter: blur(6px);
}
.video-modal[hidden] { display: none; }
.video-modal__player { max-width: min(94vw, 900px); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow); background: #000; }
.video-modal__close { position: absolute; top: 14px; right: 26px; font-size: 2.6rem; line-height: 1; color: #fff; background: none; border: none; cursor: pointer; z-index: 2; }

@media (max-width: 620px) { .video-item { flex-basis: 44%; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  transition: border-color .25s;
}
.faq__item[open] { border-color: var(--purple); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 500;
  font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--purple-light);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--text-soft); padding: 0 0 20px; font-size: 0.97rem; max-width: 92%; font-weight: 300; }

/* ---------- CTA Final ---------- */
.cta-final { position: relative; padding: 110px 0; text-align: center; overflow: hidden; }
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(200,70,211,0.26), transparent 60%),
    linear-gradient(180deg, var(--plum-2), var(--plum));
}
.cta-final__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-final h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.18; letter-spacing: -0.3px; }
.cta-final p { color: var(--text-soft); font-size: 1.1rem; margin: 18px auto 32px; max-width: 560px; font-weight: 300; }
.cta-final__sub { display: block; margin-top: 20px; color: var(--text-mute); font-size: 0.9rem; letter-spacing: .04em; }

/* ---------- Footer ---------- */
.footer { background: #0c0410; border-top: 1px solid var(--line); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { color: var(--text-mute); font-size: 0.92rem; margin-top: 16px; font-weight: 300; }
.footer__col h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 16px; color: var(--purple-light); font-weight: 500; }
.footer__col a, .footer__col span { display: block; color: var(--text-soft); font-size: 0.92rem; margin-bottom: 10px; transition: color .2s; font-weight: 300; }
.footer__col a:hover { color: var(--purple-light); }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom span { color: var(--text-mute); font-size: 0.84rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .25s var(--ease);
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Animação de reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .diff__grid { grid-template-columns: 1fr; gap: 48px; }
  .diff__media { max-width: 420px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: var(--plum-2);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; }
  .nav__cta { margin-top: 8px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 130px 0 70px; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
