/* ============================================================
   ConnectBPM — BPM conectado a tu ERP
   Diseño claro, cálido y editorial.
   Crema + terracota + ámbar. Tipografía moderna (Space Grotesk).
   ============================================================ */

:root {
  --ink:      #2b2018;   /* marrón cálido oscuro (texto) */
  --ink-soft: #5c4e42;   /* texto secundario cálido */
  --cream:    #fbf4ea;   /* fondo crema principal */
  --cream-2:  #f4e8d7;   /* fondo crema alterno */
  --card:     #fffdf9;   /* tarjetas casi blancas cálidas */
  --amber:    #e8a13a;   /* ámbar */
  --amber-d:  #cf8317;
  --clay:     #d9683b;   /* terracota */
  --clay-d:   #b64e26;
  --peach:    #f6d9bc;   /* durazno suave */
  --line:     #e7d9c4;   /* líneas / bordes cálidos */
  --muted:    #6b5842;   /* texto tenue (contraste AA sobre crema) */
  --white:    #ffffff;

  --display: 'Space Grotesk', system-ui, sans-serif;
  --serif:   'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --max: 1120px;
  --shadow: 0 18px 50px -20px rgba(70, 45, 20, .28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.02em;
}
a { color: inherit; text-decoration: none; }

/* ---------- ACCESIBILIDAD ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: 10px;
  transition: top .25s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--clay-d);
  outline-offset: 2px;
  border-radius: 4px;
}
.case :focus-visible,
.footer :focus-visible { outline-color: var(--amber); }

/* ---------- SCROLL PROGRESS ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--clay));
  z-index: 200;
  transition: width .1s linear;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(251, 244, 234, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav--scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(70,45,20,.5);
}

.nav__brand {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  z-index: 110;
  letter-spacing: -.02em;
}
.nav__brand span { color: var(--clay); }

.nav__links { display: flex; gap: 24px; align-items: center; }
.nav__links a { color: var(--ink-soft); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--clay); }
.nav__links a.is-active:not(.nav__cta):not(.nav__demo) { color: var(--clay); }

.nav__demo {
  font-weight: 600 !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--line);
  padding: 8px 18px;
  border-radius: 40px;
  transition: border-color .2s, color .2s, background .2s !important;
}
.nav__demo:hover {
  border-color: var(--clay);
  color: var(--clay) !important;
  background: rgba(217,104,59,.06);
}

.nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 40px;
  transition: background .2s, color .2s, transform .15s !important;
}
.nav__cta:hover { background: var(--clay); transform: translateY(-1px); }

/* Botón "Ingresar" siempre visible arriba (solo se muestra en móvil) */
.nav__login-top {
  display: none;
  align-items: center;
  background: var(--ink);
  color: var(--cream) !important;
  font-family: var(--display);
  font-weight: 600;
  font-size: .9rem;
  padding: 9px 18px;
  border-radius: 40px;
  position: relative;
  z-index: 110;
}
.nav__login-top:active { background: var(--clay); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ANIMATIONS ---------- */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-18px, 22px) scale(1.06); }
}

.hero__eyebrow { animation: heroIn .7s ease both; }
.hero__title   { animation: heroIn .7s .12s ease both; }
.hero__lead    { animation: heroIn .7s .26s ease both; }
.hero__actions { animation: heroIn .7s .40s ease both; }
.hero__support { animation: heroIn .7s .56s ease both; }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(60% 60% at 15% 10%, rgba(246,217,188,.7) 0%, transparent 60%),
    radial-gradient(50% 55% at 92% 20%, rgba(232,161,58,.28) 0%, transparent 62%),
    var(--cream);
  padding: 96px 32px 88px;
  position: relative;
  overflow: hidden;
}
/* Blob cálido flotante */
.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(217,104,59,.30) 0%, rgba(217,104,59,0) 68%);
  filter: blur(6px);
  animation: floatBlob 14s ease-in-out infinite;
  pointer-events: none;
}
/* Grano sutil */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--clay-d);
  background: rgba(217,104,59,.10);
  border: 1px solid rgba(217,104,59,.25);
  padding: 7px 15px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  max-width: 18ch;
  color: var(--ink);
  letter-spacing: -.035em;
}
.hero__title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(92deg, var(--clay), var(--amber-d));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--clay);
}
.hero__lead { max-width: 58ch; margin: 24px 0 0; color: var(--ink-soft); font-size: 1.12rem; }
.hero__lead + .hero__lead { margin-top: 14px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.hero__support {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 46ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink-soft);
}
.hero__support strong {
  font-weight: 500;
  color: var(--clay-d);
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .92rem;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 30px -12px rgba(43,32,24,.6);
}
.btn--primary:hover { background: var(--clay); box-shadow: 0 14px 34px -12px rgba(217,104,59,.7); }
.btn--ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { border-color: var(--clay); color: var(--clay); background: rgba(217,104,59,.06); }

/* ---------- REVEAL ANIMATION ----------
   Solo se oculta contenido cuando hay JS (html.js).
   Sin JS todo permanece visible. */
.js .reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .65s ease, translate .65s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
.js .cards .card.reveal:nth-child(2) { transition-delay: .08s; }
.js .cards .card.reveal:nth-child(3) { transition-delay: .16s; }
.js .cards .card.reveal:nth-child(4) { transition-delay: .08s; }
.js .cards .card.reveal:nth-child(5) { transition-delay: .16s; }
.js .cards .card.reveal:nth-child(6) { transition-delay: .24s; }

/* ---------- SECCIONES ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 100px 32px; }
.section--alt { max-width: none; background: var(--cream-2); }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section__head { margin-bottom: 56px; max-width: 760px; }
.section__head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: var(--ink);
  letter-spacing: -.03em;
}

.tag {
  display: inline-block;
  background: rgba(217,104,59,.10);
  color: var(--clay-d);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* ---------- PROBLEMA / ABOUT ---------- */
.about { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.about__text p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 18px; }
.about__text strong { color: var(--clay-d); font-weight: 600; }
.about__facts { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about__facts li {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--clay);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
}
.about__facts strong { font-family: var(--display); color: var(--ink); font-size: .95rem; }
.about__facts span { color: var(--muted); font-size: .92rem; }

/* ---------- CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--amber);
  box-shadow: var(--shadow);
}
.card__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clay);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(232,161,58,.20), rgba(217,104,59,.16));
}
.card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- POR QUÉ / DIFERENCIAL ---------- */
.diff { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.diff__quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}
.diff__quote em { font-style: italic; color: var(--muted); }
.diff__quote strong { font-weight: 500; color: var(--clay); }
.diff__body p { font-size: 1.1rem; color: var(--ink-soft); }
.diff__body p + p { margin-top: 16px; }

/* ---------- PRODUCTO / RECORRIDO ---------- */
.journey {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 44px;
  counter-reset: none;
}
.journey li {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 22px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.journey li:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.journey li + li::before {
  content: "→";
  position: absolute;
  left: -31px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clay);
  font-family: var(--display);
  font-weight: 700;
}
.journey__text {
  margin-top: 36px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 62ch;
}
.journey__note {
  margin-top: 14px;
  font-size: .95rem;
  color: var(--muted);
  max-width: 72ch;
}

/* ---------- CÓMO FUNCIONA / CASE ---------- */
.case {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(232,161,58,.22) 0%, transparent 55%),
    linear-gradient(145deg, var(--clay) 0%, var(--clay-d) 100%);
  border-radius: 28px;
  padding: 56px 52px;
  color: #fbeee2;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.case::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.case > * { position: relative; z-index: 1; }
.case__header { margin-bottom: 44px; }
.case__label {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffe6cf;
  margin-bottom: 14px;
}
.case__title {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  color: var(--white);
  max-width: 34ch;
  line-height: 1.22;
}
.case__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  margin-bottom: 40px;
}
.case__step-num {
  display: block;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  color: #ffe6cf;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.case__step p {
  font-size: .98rem;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}
.case__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 400;
  color: var(--white);
  border-left: 3px solid rgba(255,255,255,.55);
  padding-left: 24px;
  margin: 0;
}

/* ---------- CONTACTO / DEMO ---------- */
.contact {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(232,161,58,.22) 0%, transparent 60%),
    var(--cream-2);
  color: var(--ink);
  text-align: center;
  padding: 112px 32px;
  position: relative;
  overflow: hidden;
}
.contact__inner { max-width: 660px; margin: 0 auto; position: relative; z-index: 2; }
.contact .tag {
  background: rgba(217,104,59,.12);
  color: var(--clay-d);
}
.contact h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 8px 0 16px;
  color: var(--ink);
  letter-spacing: -.03em;
}
.contact p { color: var(--ink-soft); margin-bottom: 32px; font-size: 1.1rem; }
.contact__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact__social { display: flex; gap: 26px; justify-content: center; margin-top: 36px; }
.contact__social a { color: var(--muted); font-size: .92rem; font-weight: 500; transition: color .2s; }
.contact__social a:hover { color: var(--clay); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: #b6a390;
  text-align: center;
  padding: 44px 24px 36px;
  font-size: .9rem;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
}
.footer__brand span { color: var(--clay); }
.footer__line { margin-top: 6px; }
.footer__contact {
  margin-top: 16px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__contact a {
  color: var(--cream);
  font-weight: 500;
  transition: color .2s;
}
.footer__contact a:hover { color: var(--amber); }
.footer__copy { margin-top: 18px; font-size: .8rem; }

/* ---------- RESPONSIVE — tablet / mobile ---------- */
@media (max-width: 860px) {
  /* En móvil quitamos el backdrop-filter: en iOS Safari un ancestro con
     backdrop-filter "atrapa" a los hijos position:fixed y el menú no cubría
     la pantalla completa. Usamos un fondo casi sólido en su lugar. */
  .nav {
    padding: 14px 20px;
    background: rgba(251, 244, 234, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__toggle { display: flex; }

  /* Ingresar visible arriba, pegado a la derecha antes del menú */
  .nav__login-top { display: inline-flex; margin-left: auto; margin-right: 14px; }
  /* Se oculta el "Ingresar" de dentro del menú para no duplicarlo */
  .nav__links .nav__cta { display: none; }

  /* ---- Menú móvil a pantalla completa, legible y opaco ---- */
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Fondo cálido totalmente opaco: nada del hero se transparenta detrás */
    background: linear-gradient(165deg, #fdf9f1 0%, #f3e6d3 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 24px 32px;   /* deja libre la franja del logo y la X */
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 105;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: none; }

  .nav__links a {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink) !important;        /* marrón oscuro, alto contraste */
    padding: 20px 8px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(120, 90, 60, .16);
    border-radius: 0;
    transition: color .2s !important;
  }
  .nav__links a:active,
  .nav__links a:hover { color: var(--clay) !important; }
  .nav__links a.is-active { color: var(--clay) !important; }

  /* Pedir demo como botón grande al final del menú.
     Selector con mayor especificidad que ".nav__links a" para que
     el texto crema no sea pisado por el color de los enlaces. */
  .nav__links .nav__demo {
    margin-top: 24px;
    text-align: center !important;
    font-size: 1.05rem !important;
    padding: 16px 20px !important;
    border-radius: 40px !important;
    width: 100% !important;
    border: none !important;
    border-bottom: none !important;
    background: var(--ink) !important;
    color: var(--cream) !important;
  }
  .nav__links .nav__demo:hover,
  .nav__links .nav__demo:active { background: var(--clay) !important; color: var(--cream) !important; }

  .hero { padding: 72px 20px 68px; }
  .section { padding: 76px 20px; }
  .section__head { margin-bottom: 40px; }
  .about, .diff { grid-template-columns: 1fr; }
  .about { gap: 36px; }
  .diff { gap: 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .case { padding: 38px 30px; border-radius: 22px; }
  .case__steps { grid-template-columns: 1fr; gap: 28px; }

  /* Recorrido del producto en vertical */
  .journey { flex-direction: column; align-items: stretch; gap: 26px; }
  .journey li + li::before {
    content: "↓";
    left: 24px;
    top: -25px;
    transform: none;
  }
}

/* ---------- RESPONSIVE — small phones ---------- */
@media (max-width: 540px) {
  .hero { padding: 60px 18px 54px; }
  .hero__eyebrow { font-size: .66rem; letter-spacing: 1.8px; margin-bottom: 22px; }
  .hero__title { font-size: clamp(2.15rem, 9vw, 2.9rem); max-width: 100%; }
  .hero__lead { font-size: 1.02rem; margin-top: 20px; }
  .hero__actions { flex-direction: column; gap: 12px; margin-top: 30px; }
  .btn { text-align: center; width: 100%; padding: 16px 24px; }
  .hero__support { font-size: 1.05rem; margin-top: 38px; padding-top: 22px; }

  .section { padding: 60px 18px; }
  .section__head { margin-bottom: 34px; }
  .section__head h2 { font-size: clamp(1.7rem, 7vw, 2.1rem); }

  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 26px 22px; }

  .about__text p { font-size: 1.02rem; }

  .diff__quote { font-size: 1.65rem; }
  .diff__body p { font-size: 1.02rem; }

  .contact { padding: 82px 18px; }
  .contact p { font-size: 1.02rem; }
  .contact__social { flex-direction: column; gap: 14px; }

  .case { padding: 28px 20px; border-radius: 18px; }
  .case__title { font-size: 1.35rem; }
  .case__steps { gap: 24px; padding: 34px 0; }
  .case__quote { font-size: 1.2rem; padding-left: 18px; }

  .journey li { font-size: .98rem; padding: 14px 18px; }
  .journey__text { font-size: 1.02rem; }
}

/* ---------- MOVIMIENTO REDUCIDO ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* El contenido revelado permanece visible sin depender de animación */
  .js .reveal { opacity: 1 !important; translate: 0 0 !important; }
  .progress-bar { display: none; }
}
