/* ═══════════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #F97316;
  --orange-dk:  #C2410C;
  --orange-md:  #EA580C;
  --amber:      #FBBF24;
  --amber-lt:   #FEF3C7;
  --green:      #16A34A;
  --bg:         #FFFBF5;
  --surface:    #FFF7ED;
  --border:     #E7E5E4;
  --text:       #1C1917;
  --muted:      #78716C;
  --white:      #FFFFFF;

  --nav-h: 60px;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .5s;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════
   SCROLL-REVEAL
═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.navbar.scrolled {
  background: rgba(255,251,245,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.nav-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  transition: color .3s;
}
.navbar.scrolled .nav-brand { color: var(--orange-dk); }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--muted); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }
.nav-hamburger {
  display: none;
  font-size: 1.4rem;
  color: var(--white);
  transition: color .3s;
}
.navbar.scrolled .nav-hamburger { color: var(--text); }

/* ═══════════════════════════════════════════════════
   HERO — CSS GRADIENT + FLOATING SHAPES
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(150deg,
    #3B0764 0%,
    #6D28D9 18%,
    #C2410C 45%,
    #F97316 68%,
    #FBBF24 100%
  );
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255,255,255,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(251,191,36,.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating background shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; top: -120px; right: -80px; animation-delay: 0s; }
.shape-2 { width: 250px; height: 250px; bottom: 60px; left: -60px; animation-delay: -3s; }
.shape-3 { width: 180px; height: 180px; top: 40%; right: 15%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: calc(var(--nav-h) + 2.5rem) 1.5rem 5rem;
  max-width: 760px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: .6rem;
  text-shadow: 0 2px 32px rgba(0,0,0,.3);
}
.hero-campaign {
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  opacity: .85;
  margin-bottom: 2.5rem;
}
.hero-campaign strong { opacity: 1; }

/* Organizers */
.hero-org > span {
  font-size: .78rem;
  opacity: .65;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .75rem;
}
.hero-org-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.org-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: var(--white);
  transition: transform .2s var(--ease);
  text-decoration: none;
}
.org-link:hover { transform: translateY(-3px); }
.org-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.5);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.org-link:hover .org-avatar { background: rgba(255,255,255,.32); }
.org-avatar-manu { background: rgba(251,191,36,.3); border-color: rgba(251,191,36,.6); }
.org-link span { font-weight: 700; font-size: .9rem; }
.org-link small { opacity: .7; font-size: .75rem; }
.org-amp {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: .5;
  align-self: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
}
.scroll-arrow {
  font-size: 1.6rem;
  animation: bounce 1.8s ease-in-out infinite;
  display: block;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════ */
.stats-strip {
  background: var(--orange);
  color: var(--white);
  padding: 2.5rem 1.5rem;
}
.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  opacity: .82;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .3rem;
}
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════
   DESTAQUE: VÍDEO DO CARMO
═══════════════════════════════════════════════════ */
.video-destaque {
  background: var(--text);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  min-height: 480px;
}
.vd-text { padding: 4rem 3rem 4rem 2rem; max-width: 420px; margin-left: auto; }
.vd-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .28rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.vd-text h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 1rem; line-height: 1.1; }
.vd-text p { font-size: .95rem; opacity: .72; line-height: 1.7; }
.vd-player-wrap { position: relative; height: 100%; min-height: 340px; }
.vd-player { position: relative; width: 100%; height: 100%; min-height: 340px; background: #000; overflow: hidden; }
.vd-player video { width: 100%; height: 100%; object-fit: cover; }
.vd-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: rgba(0,0,0,.35);
  transition: background .3s var(--ease);
  cursor: pointer;
}
.vd-overlay:hover { background: rgba(0,0,0,.18); }
.vd-play-btn { transition: transform .2s var(--ease), filter .2s; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4)); }
.vd-play-btn:hover { transform: scale(1.1); }
.vd-overlay-name { color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
.vd-overlay.hidden { display: none; }

/* ═══════════════════════════════════════════════════
   SECTIONS GENERIC
═══════════════════════════════════════════════════ */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--surface); }
.container { max-width: 920px; margin: 0 auto; }
.section h2 {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .4rem;
  display: inline-block;
}
.section h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 44px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: .4rem;
  margin-bottom: 1.75rem;
}
.section > .container > p { color: var(--muted); margin-bottom: 2rem; max-width: 560px; }

/* ═══════════════════════════════════════════════════
   SOBRE / JORNADA
═══════════════════════════════════════════════════ */
.sobre-text { max-width: 640px; margin-bottom: 3rem; }
.sobre-text p + p { margin-top: .85rem; }
.jornada { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.jornada-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 210px;
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.jornada-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.jornada-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.jornada-step strong { display: block; font-weight: 700; margin-bottom: .3rem; font-size: .92rem; }
.jornada-step span { font-size: .78rem; color: var(--muted); }
.jornada-arrow { font-size: 1.5rem; color: var(--amber); font-weight: 900; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   CRECHE
═══════════════════════════════════════════════════ */
.creche-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.creche-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .25rem;
  color: var(--orange-dk);
}
.creche-tagline {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: .9rem;
}
.creche-info p { font-size: .92rem; margin-bottom: .8rem; line-height: 1.7; }
.creche-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}
.creche-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  transition: transform .15s var(--ease), box-shadow .15s;
  text-decoration: none;
}
.creche-link-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.creche-link-site {
  background: var(--orange);
  color: var(--white);
}
.creche-link-ig {
  background: #E1306C;
  color: var(--white);
}
.creche-nota {
  font-size: .8rem;
  color: var(--muted);
  background: var(--amber-lt);
  border-left: 3px solid var(--amber);
  padding: .65rem 1rem;
  border-radius: 0 .5rem .5rem 0;
  margin-top: 1rem;
}
.creche-valores { display: flex; flex-direction: column; gap: 1.25rem; }
.creche-valor-item {
  background: var(--surface);
  border-radius: .75rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
}
.creche-valor-item strong { display: block; font-weight: 700; margin-bottom: .4rem; color: var(--orange-dk); font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; }
.creche-valor-item span { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   FINANCEIRO / DONUT
═══════════════════════════════════════════════════ */
.financeiro-grid { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; margin-top: .5rem; }
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.donut-container { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none;
}
.donut-valor { font-size: 1.1rem; font-weight: 900; letter-spacing: -.02em; color: var(--text); white-space: nowrap; }
.donut-sub { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.donut-tooltip { min-height: 1.4rem; font-size: .84rem; font-weight: 600; color: var(--orange-dk); text-align: center; opacity: 0; transition: opacity .2s; }
.donut-tooltip.visible { opacity: 1; }
.donut-legenda { display: flex; flex-wrap: wrap; gap: .3rem .5rem; max-width: 240px; justify-content: center; }
.legenda-item { display: flex; align-items: center; gap: .3rem; font-size: .7rem; color: var(--muted); }
.legenda-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   TOTAL CARD & TABELA
═══════════════════════════════════════════════════ */
.total-card {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--orange); color: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  margin-bottom: 1rem;
  gap: 1rem;
}
.total-label { font-size: .88rem; font-weight: 600; opacity: .9; }
.total-valor { font-size: 1.55rem; font-weight: 900; letter-spacing: -.03em; white-space: nowrap; }
.tabela {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tabela thead tr { background: var(--amber-lt); }
.tabela th { padding: .6rem 1rem; text-align: left; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.tabela td { padding: .62rem 1rem; border-bottom: 1px solid var(--border); }
.tabela td small { color: var(--muted); font-size: .8em; }
.tabela tbody tr:last-child td { border-bottom: none; }
.tabela td:last-child { font-weight: 700; color: var(--green); text-align: right; }
#tabelaBody tr { opacity: 0; transform: translateX(-14px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
#tabelaBody tr.revealed { opacity: 1; transform: none; }
.tabela tbody tr:nth-child(even) { background: #FAFAF9; }
.tabela tfoot tr { background: var(--surface); }
.tabela-total td { font-size: .9rem; font-weight: 700; color: var(--text); border-top: 2px solid var(--border); }
.tabela-total td:last-child { color: var(--orange-dk); font-size: 1rem; }

/* ═══════════════════════════════════════════════════
   COMPROVANTE
═══════════════════════════════════════════════════ */
.comprovante-wrap { display: flex; flex-direction: column; align-items: center; }
.extrato-img {
  max-width: 360px; width: 100%;
  border-radius: var(--radius); border: 2px solid var(--border);
  box-shadow: var(--shadow); cursor: zoom-in;
  transition: transform .25s var(--ease), box-shadow .25s;
  margin-top: 1rem;
}
.extrato-img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.dica { font-size: .75rem; color: var(--muted); margin-top: .5rem; }

/* ═══════════════════════════════════════════════════
   O QUE COMPRAMOS
═══════════════════════════════════════════════════ */
.compras-docs-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: .5rem;
}
.compras-docs-wrap .doc-card { width: 100%; max-width: 760px; }
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.doc-titulo {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: .75rem;
}
.doc-img {
  width: 100%;
  border-radius: .5rem;
  cursor: zoom-in;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.doc-img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════════════════════
   GALERIA
═══════════════════════════════════════════════════ */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; margin-top: 1.5rem; }
.gitem { position: relative; border-radius: .75rem; overflow: hidden; aspect-ratio: 1; cursor: pointer; background: var(--border); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.gitem:hover img { transform: scale(1.08); }
.gitem-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  opacity: 0;
  transition: background .3s, opacity .3s;
}
.gitem:hover .gitem-overlay { background: rgba(0,0,0,.35); opacity: 1; }

/* ═══════════════════════════════════════════════════
   VÍDEOS
═══════════════════════════════════════════════════ */
.videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-card video { width: 100%; display: block; }
.video-label { background: var(--surface); padding: .6rem 1rem; font-size: .85rem; font-weight: 600; color: var(--muted); border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: lbIn .2s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-figure { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 90vw; max-height: 88vh; border-radius: .5rem; object-fit: contain; box-shadow: 0 8px 48px rgba(0,0,0,.6); animation: lbImgIn .25s var(--ease); }
@keyframes lbImgIn { from { opacity: 0; transform: scale(.93); } to { opacity: 1; transform: scale(1); } }
.lb-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 201;
}
.lb-close:hover { background: rgba(255,255,255,.3); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white); font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; z-index: 201;
}
.lb-nav:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-counter { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 600; letter-spacing: .08em; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: var(--text);
  color: #A8A29E;
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: .88rem;
  line-height: 2;
}
footer strong { color: var(--white); }
footer a { color: #A8A29E; transition: color .2s; }
footer a:hover { color: var(--amber); }
.footer-campaign { font-size: 1rem; margin-bottom: .25rem; }
.footer-orgs { display: flex; align-items: center; justify-content: center; gap: .75rem; margin: .25rem 0; }
.footer-creche { font-size: .85rem; }
.footer-domain { opacity: .4; font-size: .72rem; margin-top: .5rem; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .video-destaque { grid-template-columns: 1fr; min-height: auto; }
  .vd-text { padding: 3rem 1.5rem 1.5rem; max-width: 100%; margin: 0; }
  .vd-player-wrap { min-height: 260px; }
  .vd-player { min-height: 260px; }
  .financeiro-grid { grid-template-columns: 1fr; }
  .donut-wrap { margin-bottom: 1.5rem; }
  .creche-card { grid-template-columns: 1fr; }
  .compras-docs-wrap .doc-card { max-width: 100%; }
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg); padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    gap: .75rem; z-index: 99;
  }
  .nav-links.open a { color: var(--text); font-size: 1rem; }
  .nav-hamburger { display: block; }
  .stat-divider { display: none; }
  .hero-org-names { gap: .75rem; }
  .jornada-arrow { transform: rotate(90deg); }
  .jornada { flex-direction: column; }
  .jornada-step { max-width: 100%; width: 100%; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .total-card { flex-direction: column; align-items: flex-start; gap: .15rem; }
  .compras-docs-wrap .doc-card { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .scroll-arrow, .shape { animation: none; }
}
