@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --navy: #1b2a4d;
  --navy-soft: #2c3f68;
  --mint: #b9e8c9;
  --mint-deep: #4f9d6e;
  --surface: #f6f8f8;
  --card: #ffffff;
  --border: #e2e6ea;
  --muted: #5b6472;
  --text: #1a1f2b;
  --radius: 14px;
  --shadow-soft: 0 1px 2px rgba(27,42,77,.06), 0 8px 24px -12px rgba(27,42,77,.14);
  --shadow-card: 0 2px 4px rgba(27,42,77,.05), 0 18px 40px -20px rgba(27,42,77,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
h1, h2, h3, .display {
  font-family: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.08;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--mint); color: var(--navy); }
.btn-primary:hover { background: #a6dfb9; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-navy:hover { background: var(--surface); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
}

/* Franja superior verde: logo + botones */
.header-top {
  background: var(--mint);
  border-radius: 0 0 26px 26px;
}
.header-top .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; grid-column: 2; justify-self: center; }
.brand img { height: 34px; width: auto; }
.brand span { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; color: var(--navy); letter-spacing: .01em; }
.header-actions { display: flex; align-items: center; gap: 10px; grid-column: 3; justify-self: end; }

@media (max-width: 640px) {
  .header-top .container {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 10px;
  }
  .brand span { font-size: 19px; }
  .header-actions { justify-content: center; flex-wrap: wrap; }
  .header-actions .btn { height: 38px; padding: 0 14px; font-size: 13px; }
}
.header-actions .btn { height: 44px; padding: 0 20px; font-size: 14px; border-radius: 999px; }
.header-actions .btn-navy { background: var(--navy); color: #fff; }
.header-actions .btn-wa {
  background: #fff; color: var(--navy); border: 1px solid rgba(27,42,77,.18);
}
.header-actions .btn-wa:hover { background: var(--surface); }
.header-actions .btn-wa svg { color: var(--navy); }

/* Franja inferior blanca: menú (siempre visible, deslizable si no cabe) */
.header-nav { background: #fff; border-bottom: 1px solid var(--border); }
.header-nav .container { display: flex; align-items: center; height: 56px; padding: 0; }
.nav-links {
  display: flex; gap: 26px; font-size: 14px; font-weight: 600;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  white-space: nowrap; flex-wrap: nowrap;
  padding: 0 20px; margin: 0 auto; scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { text-decoration: none; color: var(--muted); padding: 4px 0; border-bottom: 2px solid transparent; flex-shrink: 0; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; border-bottom-color: var(--mint-deep); }
@media (min-width: 960px) { .nav-links { justify-content: center; overflow-x: visible; } }

.header-cta { display: none; }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(27,42,77,.55), rgba(27,42,77,.42), rgba(27,42,77,.62));
}
.hero .container { position: relative; z-index: 2; padding: 100px 20px 96px; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(185,232,201,.92); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 800; max-width: 760px; margin-top: 22px; }
.hero h1 em { font-style: normal; color: var(--mint); }
.hero p.lead { max-width: 620px; margin-top: 18px; font-size: 17px; color: rgba(255,255,255,.85); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 30px; font-size: 13px; color: rgba(255,255,255,.68); }

/* Beneficios */
.beneficios { background: var(--surface); }
.grid-4 { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; box-shadow: var(--shadow-soft); transition: transform .2s ease;
}
.card:hover { transform: translateY(-3px); }
.icon-badge {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: var(--mint); color: var(--navy);
}
.card h3 { margin-top: 16px; font-size: 17px; font-weight: 700; }
.card p { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* Servicios */
.grid-3 { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Planes */
.planes-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 900px) { .planes-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.plan-card.destacado { border-color: var(--mint-deep); box-shadow: var(--shadow-card); transform: scale(1.02); }
.plan-card.premium {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.plan-card.premium .desc { color: rgba(255,255,255,.75); }
.plan-card.premium .incluye-titulo { color: var(--mint); }
.plan-card.premium li { color: rgba(255,255,255,.92); }
.plan-card.premium li::before { color: var(--mint); }
.plan-card.premium .plan-badge { background: var(--mint); color: var(--navy); }
.plan-badge { display: inline-flex; align-items: center; gap: 5px; }
.plan-badge {
  position: absolute; top: -13px; left: 24px; background: var(--navy); color: var(--mint);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.plan-card h3 { font-size: 22px; font-weight: 800; letter-spacing: .02em; }
.plan-card .desc { margin-top: 8px; font-size: 14px; color: var(--muted); min-height: 44px; }
.plan-card .incluye-titulo { margin-top: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mint-deep); }
.plan-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan-card li { display: flex; gap: 8px; font-size: 14px; }
.plan-card li::before { content: "✓"; color: var(--mint-deep); font-weight: 800; flex-shrink: 0; }
.plan-card .btn { margin-top: 24px; width: 100%; }

/* Comparador */
.tabla-comparador { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14px; background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); }
.tabla-comparador th, .tabla-comparador td { padding: 14px 18px; text-align: center; }
.tabla-comparador th:first-child, .tabla-comparador td:first-child { text-align: left; }
.tabla-comparador tbody tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.tabla-comparador thead th { background: var(--navy); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; }
.tabla-comparador .si { color: var(--mint-deep); font-weight: 800; }
.tabla-comparador .no { color: #c3c9d1; }
.tabla-wrap { overflow-x: auto; margin-top: 48px; }

/* Galeria */
.galeria-filtros { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.filtro-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filtro-btn:hover { border-color: var(--mint); color: #fff; }
.filtro-btn.active { background: var(--mint); border-color: var(--mint); color: var(--navy); }
.galeria-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
@media (min-width: 700px) { .galeria-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .galeria-grid { grid-template-columns: repeat(4, 1fr); } }
.galeria-item { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: var(--navy-soft); }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; }

/* Como funciona */
.pasos { display: grid; gap: 32px; grid-template-columns: 1fr; margin-top: 48px; }
@media (min-width: 900px) { .pasos { grid-template-columns: repeat(4, 1fr); } }
.paso .num-badge {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--navy); color: var(--mint); box-shadow: var(--shadow-card);
}
.paso .step-label { margin-top: 16px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mint-deep); }
.paso h3 { margin-top: 4px; font-size: 17px; font-weight: 700; }
.paso p { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* Testimonios */
.testimonios { background: var(--surface); }
.testi-card { border: 1px dashed var(--border); border-radius: 18px; padding: 24px; background: var(--card); }
.testi-card p { margin-top: 14px; font-size: 14px; color: var(--muted); }
.testi-card .nombre { margin-top: 18px; font-size: 14px; font-weight: 700; }
.testi-card .detalle { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .faq-grid { grid-template-columns: .8fr 1.2fr; } }
details.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
details.faq-item summary { cursor: pointer; font-weight: 700; font-size: 15px; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-size: 20px; color: var(--mint-deep); flex-shrink: 0; }
details.faq-item[open] summary::after { content: "–"; }
details.faq-item .faq-a { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* CTA cotizar */
.cta-cotizar { background: var(--surface); }
.cta-card { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); display: grid; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .cta-card { grid-template-columns: 1fr 1fr; } }
.cta-card .txt { padding: 40px; }
.cta-card ul { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.cta-card li { display: flex; gap: 10px; }
.cta-card .img-wrap { min-height: 260px; position: relative; }
.cta-card .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* CTA final */
.cta-final { position: relative; background: var(--navy); overflow: hidden; }
.cta-final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.cta-final::after { content: ""; position: absolute; inset: 0; background: rgba(27,42,77,.55); }
.cta-final .container { position: relative; z-index: 2; padding: 90px 20px; text-align: center; color: #fff; }
.cta-final h2 { max-width: 720px; margin: 0 auto; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-final p { max-width: 540px; margin: 18px auto 0; color: rgba(255,255,255,.85); }
.cta-final .hero-ctas { justify-content: center; }

/* Footer */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,.85); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; padding: 32px 0 30px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-grid a { display: block; font-size: 14px; color: rgba(255,255,255,.75); text-decoration: none; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--mint); }
.social-circle {
  display: grid; place-items: center; width: 30px; height: 30px;
  background: transparent; color: rgba(255,255,255,.85); margin: 0 !important;
}
.social-circle svg { width: 24px; height: 24px; }
.social-circle:hover { color: var(--mint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* WhatsApp flotante */
.wa-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  width: 58px; height: 58px; border-radius: 999px; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.25); text-decoration: none;
}

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 72px 20px; }
.legal h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.legal .intro { margin-top: 14px; color: var(--muted); }
.legal section { margin-top: 32px; }
.legal h2 { font-size: 17px; font-weight: 700; }
.legal p, .legal li { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.6; }
.legal ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.legal .nota { margin-top: 44px; font-size: 12px; color: #9aa2ad; }

/* Form (cotizar) */
.form-shell { max-width: 720px; margin: 0 auto; padding: 44px 20px 90px; }

/* Pantalla de confirmacion tras enviar el formulario */
.confirmacion-shell {
  max-width: 560px; margin: 0 auto; padding: 90px 20px 110px; text-align: center;
}
.confirmacion-icono {
  width: 76px; height: 76px; border-radius: 999px; background: var(--mint);
  color: var(--navy); display: grid; place-items: center; margin: 0 auto 22px;
}
.confirmacion-shell h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.confirmacion-texto { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.form-shell h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.form-shell .sub { margin-top: 14px; color: var(--muted); }

/* Progreso del asistente */
.wizard-progress { margin-top: 34px; }
.wizard-progress-top { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.wizard-progress-bar { height: 5px; background: var(--border); border-radius: 999px; overflow: hidden; }
.wizard-progress-fill { height: 100%; background: var(--navy); border-radius: 999px; transition: width .3s ease; }

.wizard-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 30px; margin-top: 22px; box-shadow: var(--shadow-soft); }

/* Capa de "Enviando..." sobre el formulario */
.wizard-loading {
  position: absolute; inset: 0; z-index: 5; border-radius: 20px;
  background: rgba(255,255,255,.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.wizard-loading[hidden] { display: none; }
.wizard-loading p { font-weight: 700; color: var(--navy); font-size: 15px; }
.spinner {
  width: 40px; height: 40px; border-radius: 999px;
  border: 4px solid var(--border); border-top-color: var(--mint-deep);
  animation: girar .8s linear infinite;
}
@keyframes girar { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2s; } }
@media (max-width: 480px) {
  .wizard-card { padding: 20px 16px; }
  .form-shell { padding-left: 14px; padding-right: 14px; }
}
.wizard-step h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; }
.wizard-step-sub { margin-top: 8px; color: var(--muted); font-size: 13px; }
.wizard-nav { margin-top: 30px; display: flex; justify-content: space-between; gap: 12px; }

fieldset { border: 1px solid var(--border); border-radius: 16px; padding: 22px; margin-top: 24px; }
fieldset legend { padding: 0 8px; font-weight: 700; font-size: 15px; color: var(--navy); }
.field { margin-top: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
  font-family: inherit; font-size: 14px; background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.row-2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; font-size: 13px; color: var(--muted); }
.checkbox-row input { margin-top: 3px; }
.form-msg { margin-top: 18px; padding: 14px 16px; border-radius: 10px; font-size: 14px; display: none; }
.form-msg.ok { display: block; background: #eafaf0; color: #1e6b40; border: 1px solid #bfe8cd; }
.form-msg.error { display: block; background: #fdeeee; color: #9a2a2a; border: 1px solid #f5c6c6; }
.submit-row { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.plan-select-grid { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 6px; }
@media (min-width: 640px) { .plan-select-grid { grid-template-columns: repeat(2, 1fr); } }
.plan-option {
  border: 1px solid var(--border); border-radius: 12px; padding: 14px; cursor: pointer;
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600;
}
.plan-option input { margin: 0; }
.plan-option:has(input:checked) { border-color: var(--mint-deep); background: #f2fbf5; }

/* Botones tipo pildora (Si/No/No se) */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-btn {
  background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer;
}
.pill-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Inventario con contadores */
.inv-titulo { margin-top: 28px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mint-deep); }

/* Lista de televisores */
.tv-lista { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.tv-fila {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-size: 14px;
}
.tv-fila .tv-quitar {
  background: none; border: none; color: #c3535a; cursor: pointer; font-size: 18px; line-height: 1; padding: 0 4px;
}
.tv-form { border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-top: 14px; background: var(--surface); }
.inv-grid { display: grid; gap: 10px; grid-template-columns: 1fr; margin-top: 12px; }
@media (min-width: 640px) { .inv-grid { grid-template-columns: 1fr 1fr; } }
.inv-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-size: 14px;
}
.inv-item .inv-controles { display: flex; align-items: center; gap: 10px; }
.inv-item .inv-btn {
  width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--border); background: #fff;
  display: grid; place-items: center; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 15px; line-height:1;
}
.inv-item .inv-count { min-width: 18px; text-align: center; font-weight: 700; }

/* Tarjetas de servicio (paso 4) */
.servicio-opciones { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.servicio-card {
  text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px;
  cursor: pointer; display: flex; flex-direction: column; gap: 4px;
}
.servicio-card strong { font-size: 15px; font-weight: 800; color: var(--navy); }
.servicio-card span { font-size: 13px; color: var(--muted); }
.servicio-card.active { border-color: var(--mint-deep); background: #f2fbf5; }
.servicio-card-simple { font-size: 14px; font-weight: 600; color: var(--navy); }

/* Zona de fotos */
.foto-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 2px dashed var(--border); border-radius: 16px; padding: 34px 20px; cursor: pointer; text-align: center;
  color: var(--mint-deep);
}
.foto-drop span { font-weight: 700; color: var(--navy); font-size: 15px; }
.foto-drop small { color: var(--muted); font-size: 12px; }


.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
