/* ============================================================
   Aldía · Landing (aldia-app.com)
   Paleta: #334E68 slate · #1F2937 texto · #FF9C00 acento · #F3F4F6 fondo
   Sin fuentes ni scripts externos.
   ============================================================ */

:root {
    --al-slate: #334E68;
    --al-slate-800: #243B53;
    --al-slate-900: #102A43;
    --al-slate-400: #829AB1;
    --al-slate-300: #9FB3C8;
    --al-slate-100: #D9E2EC;
    --al-slate-50: #F0F4F8;
    --al-acento: #FF9C00;
    --al-acento-suave: #FFF3E0;
    --al-acento-texto: #B45309;
    --al-ink: #1F2937;
    --al-body: #4B5563;
    --al-muted: #6B7280;
    --al-linea: #E5E7EB;
    --al-fondo: #F3F4F6;
    --al-ok: #15803D;
    --al-ok-suave: #DCFCE7;
    --al-aviso: #B45309;

    --al-sombra-sm: 0 2px 8px rgba(31, 41, 55, .06);
    --al-sombra-md: 0 18px 40px -16px rgba(31, 41, 55, .22);
    --al-sombra-lg: 0 34px 80px -24px rgba(16, 42, 67, .42);

    --al-r-sm: 12px;
    --al-r-md: 22px;
    --al-r-lg: 32px;
    --al-r-pill: 999px;

    --al-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --al-ease: cubic-bezier(.22, 1, .36, 1);
    --al-header: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--al-header) + 12px); -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--al-font);
    font-size: 16px;
    color: var(--al-ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.025em; font-weight: 800; color: var(--al-ink); }
p { margin: 0; line-height: 1.65; color: var(--al-body); }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
main { overflow-x: clip; }
:focus-visible { outline: 3px solid var(--al-acento); outline-offset: 3px; border-radius: 8px; }

.al-ico { width: 1.2em; height: 1.2em; flex: none; }
.al-wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.al-enlace { color: var(--al-slate); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.al-skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--al-ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.al-skip:focus { left: 12px; }

/* ---------- Botones y tiendas ---------- */
.al-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 0 22px;
    border-radius: var(--al-r-pill);
    font-weight: 700; font-size: .98rem; white-space: nowrap;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .2s var(--al-ease), box-shadow .2s var(--al-ease), background .2s, border-color .2s;
}
.al-btn:hover { transform: translateY(-2px); }
.al-btn--primary { background: var(--al-slate); color: #fff; box-shadow: 0 10px 24px -10px rgba(51, 78, 104, .7); }
.al-btn--primary:hover { background: var(--al-slate-800); }
.al-btn--acento { background: var(--al-acento); color: var(--al-ink); box-shadow: 0 12px 30px -10px rgba(255, 156, 0, .6); }
.al-btn--ghost { background: #fff; color: var(--al-slate); border-color: var(--al-slate-100); }
.al-btn--ghost:hover { border-color: var(--al-slate); }
.al-btn--block { width: 100%; }

.al-stores { display: flex; flex-wrap: wrap; gap: 12px; }
.al-stores--stack { flex-direction: column; margin-top: 18px; }
.al-store {
    display: inline-flex; align-items: center; gap: 12px;
    min-height: 58px; padding: 8px 22px 8px 16px;
    border-radius: 16px;
    background: var(--al-ink); color: #fff;
    transition: transform .2s var(--al-ease), box-shadow .2s var(--al-ease);
}
.al-store:hover { transform: translateY(-3px); box-shadow: var(--al-sombra-md); }
.al-store .al-ico { width: 28px; height: 28px; }
.al-store span { display: flex; flex-direction: column; line-height: 1.1; }
.al-store small { font-size: .7rem; opacity: .8; }
.al-store b { font-size: 1.1rem; }
.al-store--claro { background: #fff; color: var(--al-ink); box-shadow: inset 0 0 0 1.5px var(--al-linea); }

.al-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 15px 8px 12px; border-radius: var(--al-r-pill);
    background: #fff; color: var(--al-slate);
    box-shadow: inset 0 0 0 1px var(--al-slate-100), var(--al-sombra-sm);
    font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.al-eyebrow .al-ico { color: var(--al-acento); width: 1.35em; height: 1.35em; }
.al-eyebrow--oscura { background: rgba(255, 255, 255, .1); color: var(--al-slate-100); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }

/* ---------- Cabecera ---------- */
.al-header {
    position: sticky; top: 0; z-index: 50;
    height: var(--al-header);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(170%) blur(16px);
    -webkit-backdrop-filter: saturate(170%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.al-header.is-scrolled { border-color: var(--al-linea); box-shadow: var(--al-sombra-sm); }
.al-header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.al-header__logo img { height: 34px; width: auto; }
.al-nav { display: flex; gap: 6px; margin-left: 20px; }
.al-nav a { padding: 8px 14px; border-radius: var(--al-r-pill); font-weight: 600; color: var(--al-body); font-size: .95rem; transition: color .2s, background .2s; }
.al-nav a:hover { color: var(--al-slate); background: var(--al-slate-50); }
.al-header__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.al-burger {
    display: none; width: 46px; height: 46px; border-radius: 14px;
    border: 1.5px solid var(--al-linea); background: #fff; color: var(--al-ink);
    align-items: center; justify-content: center; cursor: pointer;
}
.al-burger .al-ico { width: 22px; height: 22px; }

.al-drawer { position: fixed; inset: 0; z-index: 80; }
.al-drawer__scrim { position: absolute; inset: 0; background: rgba(16, 42, 67, .5); }
.al-drawer__panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 88vw);
    background: #fff; padding: 18px 20px 28px;
    display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
    animation: al-entra .3s var(--al-ease);
}
.al-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.al-drawer__head img { height: 32px; width: auto; }
.al-drawer__panel > a { display: flex; align-items: center; gap: 12px; padding: 14px 8px; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid var(--al-linea); }
.al-drawer__panel > a .al-ico { color: var(--al-slate); }
@keyframes al-entra { from { transform: translateX(100%); } to { transform: none; } }

/* ---------- Hero ---------- */
.al-hero { position: relative; overflow: hidden; padding: 64px 0 88px; background: linear-gradient(180deg, #fff 0%, var(--al-fondo) 100%); }
.al-hero__fondo { position: absolute; inset: 0; pointer-events: none; }
.al-hero__fondo::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(51, 78, 104, .13) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 30%, transparent 75%);
}
.al-orbe { position: absolute; border-radius: 50%; filter: blur(60px); }
.al-orbe--a { width: 520px; height: 520px; right: -120px; top: -140px; background: rgba(159, 179, 200, .55); animation: al-orbe 14s ease-in-out infinite; }
.al-orbe--b { width: 380px; height: 380px; left: -140px; bottom: -160px; background: rgba(255, 156, 0, .22); animation: al-orbe 16s ease-in-out -6s infinite; }
@keyframes al-orbe { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 24px); } }
.al-hero__marca { position: absolute; width: 560px; right: -150px; bottom: -110px; opacity: .06; transform: rotate(-12deg); }

.al-hero__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.al-hero h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); margin: 22px 0 20px; max-width: 12ch; }
.al-subrayado { position: relative; isolation: isolate; color: var(--al-slate); white-space: nowrap; }
.al-subrayado::after {
    content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .24em;
    background: var(--al-acento); opacity: .4; border-radius: 6px; z-index: -1;
}
.al-hero__lead { font-size: 1.15rem; max-width: 560px; margin-bottom: 30px; }
.al-hero__lead b { color: var(--al-ink); }
.al-hero__confianza { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; }
.al-hero__confianza li { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--al-ink); font-size: .93rem; }
.al-hero__confianza li > span { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: #fff; color: var(--al-slate); box-shadow: inset 0 0 0 1px var(--al-slate-100); }
.al-hero__confianza .al-ico { width: 18px; height: 18px; }

.al-hero__visual { position: relative; min-height: 600px; }
.al-phone {
    position: relative;
    border-radius: 44px; padding: 10px;
    background: #0F172A;
    box-shadow: var(--al-sombra-lg), inset 0 0 0 2px #374151;
}
.al-phone img { border-radius: 34px; width: 100%; }
.al-phone--hero { position: absolute; width: 290px; left: 50%; top: 50%; transform: translate(-40%, -50%) rotate(-4deg); z-index: 2; animation: al-flota 7s ease-in-out infinite; }
.al-phone--atras { position: absolute; width: 240px; left: 50%; top: 50%; transform: translate(-105%, -46%) rotate(-12deg); opacity: .92; filter: saturate(.9); z-index: 1; }
@keyframes al-flota { 0%, 100% { transform: translate(-40%, -50%) rotate(-4deg); } 50% { transform: translate(-40%, calc(-50% - 12px)) rotate(-4deg); } }

.al-float {
    position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
    padding: 12px 18px 12px 12px; border-radius: 18px;
    background: rgba(255, 255, 255, .96); box-shadow: var(--al-sombra-md);
    font-size: .88rem; line-height: 1.25; white-space: nowrap;
}
.al-float b { display: block; color: var(--al-ink); }
.al-float small { color: var(--al-muted); }
.al-float--a { top: 9%; right: 0; animation: al-flota-b 6s ease-in-out infinite; }
.al-float--b { top: 46%; left: -4%; animation: al-flota-b 6s ease-in-out -2s infinite; }
.al-float--c { bottom: 7%; right: 4%; animation: al-flota-b 6s ease-in-out -4s infinite; }
@keyframes al-flota-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.al-float__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; }
.al-float__ico .al-ico { width: 22px; height: 22px; }
.al-float__ico--ok { background: var(--al-ok-suave); color: var(--al-ok); }
.al-float__ico--slate { background: var(--al-slate-50); color: var(--al-slate); }
.al-float__ico--acento { background: var(--al-acento-suave); color: var(--al-acento-texto); }

/* ---------- Banda con iconos ---------- */
.al-banda { position: relative; background: var(--al-slate); color: #fff; overflow: hidden; padding: 18px 0; transform: rotate(-1.2deg) scale(1.03); margin: -10px 0; z-index: 3; box-shadow: 0 16px 40px -20px rgba(16, 42, 67, .6); }
.al-banda::before, .al-banda::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; }
.al-banda::before { left: 0; background: linear-gradient(90deg, var(--al-slate), transparent); }
.al-banda::after { right: 0; background: linear-gradient(-90deg, var(--al-slate), transparent); }
.al-banda__pista { display: flex; gap: 14px; width: max-content; animation: al-banda 46s linear infinite; }
.al-banda:hover .al-banda__pista { animation-play-state: paused; }
.al-banda__pista span {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 18px 9px 12px; border-radius: var(--al-r-pill);
    background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    font-weight: 700; font-size: 1rem; white-space: nowrap;
}
.al-banda__pista .al-ico { width: 22px; height: 22px; padding: 3px; box-sizing: content-box; border-radius: 8px; background: var(--al-acento); color: var(--al-ink); }
@keyframes al-banda { to { transform: translateX(calc(-50% - 7px)); } }

/* ---------- Cifras ---------- */
.al-cifras { padding: 64px 0 40px; }
.al-cifras__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.al-cifra { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: var(--al-r-md); background: var(--al-fondo); }
.al-cifra__ico { width: 54px; height: 54px; flex: none; border-radius: 16px; display: grid; place-items: center; background: var(--al-slate); color: #fff; }
.al-cifra__ico .al-ico { width: 26px; height: 26px; }
.al-cifra__ico--acento { background: var(--al-acento); color: var(--al-ink); }
.al-cifra b { display: block; font-size: 1.6rem; font-weight: 800; color: var(--al-ink); letter-spacing: -.03em; }
.al-cifra div span { color: var(--al-body); font-size: .9rem; line-height: 1.35; display: block; }

/* ---------- Secciones ---------- */
.al-seccion { position: relative; padding: 100px 0; }
.al-seccion--compacta { padding: 60px 0 90px; }
.al-seccion--suave { background: var(--al-fondo); }
.al-seccion--oscura { overflow: hidden; background: radial-gradient(700px 400px at 90% 0%, rgba(255, 156, 0, .16), transparent 60%), linear-gradient(160deg, var(--al-slate) 0%, var(--al-slate-900) 100%); }
.al-seccion--oscura h2 { color: #fff; }
.al-seccion--oscura p { color: var(--al-slate-100); }
.al-cabeza { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.al-cabeza h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 14px; }
.al-cabeza p { font-size: 1.08rem; }
.al-cabeza--izq { text-align: left; margin: 0 0 40px; }
.al-cabeza-fila { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }

/* ---------- Perfiles ---------- */
.al-perfiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 980px; margin: 0 auto; }
.al-perfiles span {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px 12px 12px; border-radius: var(--al-r-pill);
    background: #fff; box-shadow: inset 0 0 0 1px var(--al-linea), var(--al-sombra-sm);
    font-weight: 700; color: var(--al-ink);
    transition: transform .25s var(--al-ease), box-shadow .25s var(--al-ease);
}
.al-perfiles span:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--al-slate-300), var(--al-sombra-md); }
.al-perfiles i { font-style: normal; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--al-fondo); font-size: 1.15rem; }

/* ---------- Bento ---------- */
.al-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.al-card {
    position: relative; overflow: hidden; display: flex; flex-direction: column;
    padding: 28px; border-radius: var(--al-r-md);
    background: #fff; box-shadow: inset 0 0 0 1px var(--al-linea);
    transition: transform .3s var(--al-ease), box-shadow .3s var(--al-ease);
}
.al-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--al-slate-100), var(--al-sombra-md); }
.al-card h3 { font-size: 1.35rem; margin: 18px 0 8px; }
.al-card > p { font-size: .97rem; }
.al-card__ico {
    width: 52px; height: 52px; border-radius: 16px; flex: none;
    display: grid; place-items: center;
    background: var(--al-slate-50); color: var(--al-slate);
}
.al-card__ico .al-ico { width: 26px; height: 26px; }
.al-card__ico--acento { background: var(--al-acento-suave); color: var(--al-acento-texto); }
.al-card__ico--pro { background: var(--al-acento); color: var(--al-ink); }
.al-card--grande { grid-row: span 2; }
.al-card--slate { background: linear-gradient(165deg, var(--al-slate) 0%, var(--al-slate-900) 100%); box-shadow: none; }
.al-card--slate h3 { color: #fff; }
.al-card--slate > p { color: var(--al-slate-100); }
.al-card--slate .al-card__ico { background: rgba(255, 255, 255, .12); color: #fff; }
.al-card__captura {
    width: 74%; margin: auto auto -150px; padding-top: 26px;
    border-radius: 28px 28px 0 0;
    border: 9px solid #0F172A; border-bottom: 0;
    box-shadow: var(--al-sombra-lg);
    transition: transform .5s var(--al-ease);
}
.al-card--grande:hover .al-card__captura { transform: translateY(-14px); }
.al-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.al-chips li { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--al-r-pill); background: rgba(255, 255, 255, .1); color: #fff; font-size: .82rem; font-weight: 700; }
.al-chips .al-ico { color: var(--al-acento); width: 16px; height: 16px; }
.al-card--ancha { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.al-card__fila { display: flex; align-items: center; gap: 18px; }
.al-card--ancha h3 { margin: 0 0 4px; }
.al-seguridad { display: flex; flex-wrap: wrap; gap: 10px; }
.al-seguridad li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 14px; background: var(--al-fondo); font-weight: 700; font-size: .9rem; color: var(--al-ink); }
.al-seguridad .al-ico { color: var(--al-slate); }

/* Mini interfaces ilustrativas */
.al-demo { margin-top: 20px; padding: 14px; border-radius: 16px; background: var(--al-fondo); display: grid; gap: 8px; }
.al-demo__fila { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 12px; background: #fff; font-size: .86rem; font-weight: 600; box-shadow: var(--al-sombra-sm); }
.al-demo__fila i { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--al-slate-300); display: grid; place-items: center; color: #fff; }
.al-demo__fila i .al-ico { width: 14px; height: 14px; }
.al-demo__fila em { font-style: normal; font-size: .75rem; color: var(--al-muted); font-weight: 600; }
.al-demo__fila.is-hecha i { background: var(--al-ok); border-color: var(--al-ok); }
.al-demo__fila.is-hecha span { text-decoration: line-through; color: var(--al-muted); }
.al-demo__progreso { height: 8px; border-radius: 8px; background: var(--al-slate-100); overflow: hidden; margin-top: 4px; }
.al-demo__progreso span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--al-slate), var(--al-slate-400)); }

.al-demo__deuda { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; background: #fff; box-shadow: var(--al-sombra-sm); font-weight: 700; font-size: .9rem; }
.al-demo__deuda small { display: flex; align-items: center; gap: 4px; font-weight: 600; font-size: .74rem; color: var(--al-muted); }
.al-demo__deuda small .al-ico { width: 13px; height: 13px; color: var(--al-acento-texto); }
.al-demo__deuda b { color: var(--al-acento-texto); }
.al-avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--al-slate); color: #fff; font-size: .75rem; font-weight: 800; }
.al-avatar--b { background: var(--al-acento); color: var(--al-ink); }

.al-barras { display: flex; align-items: flex-end; gap: 8px; height: 92px; padding: 0 4px 18px; }
.al-barras span { position: relative; flex: 1; height: var(--h); border-radius: 8px 8px 4px 4px; background: var(--al-slate-100); }
.al-barras span.is-actual { background: linear-gradient(180deg, var(--al-acento), #FFB547); }
.al-barras i { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: .66rem; font-weight: 700; color: var(--al-muted); }
.al-demo__meta { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 12px; background: #fff; font-size: .84rem; font-weight: 700; box-shadow: var(--al-sombra-sm); }
.al-demo__meta span { display: flex; align-items: center; gap: 6px; }
.al-demo__meta .al-ico { color: var(--al-slate); }
.al-demo__meta b { color: var(--al-ok); }

.al-linea-tiempo { position: relative; display: grid; gap: 10px; }
.al-linea-tiempo::before { content: ""; position: absolute; left: 17px; top: 16px; bottom: 16px; border-left: 2px dashed var(--al-slate-300); }
.al-linea-tiempo > div { position: relative; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .88rem; }
.al-linea-tiempo i { width: 36px; height: 36px; flex: none; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--al-slate); box-shadow: var(--al-sombra-sm); }
.al-linea-tiempo i .al-ico { width: 18px; height: 18px; }
.al-linea-tiempo span { flex: 1; display: flex; justify-content: space-between; padding: 8px 12px; border-radius: 12px; background: #fff; box-shadow: var(--al-sombra-sm); }
.al-linea-tiempo small { color: var(--al-muted); font-weight: 600; }

/* ---------- Galería + visor ---------- */
.al-capturas { overflow: hidden; background: linear-gradient(160deg, var(--al-slate) 0%, var(--al-slate-900) 100%); }
.al-capturas__fondo {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(600px 360px at 12% 0%, rgba(255, 156, 0, .18), transparent 60%),
        radial-gradient(rgba(255, 255, 255, .08) 1.2px, transparent 1.2px) 0 0 / 26px 26px;
}
.al-capturas .al-wrap, .al-capturas .al-galeria, .al-capturas .al-galeria__puntos { position: relative; }
.al-capturas h2 { color: #fff; }
.al-capturas .al-cabeza p { color: var(--al-slate-100); }
.al-galeria__botones { display: flex; gap: 10px; margin-bottom: 40px; }
.al-redondo {
    width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
    display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    transition: background .2s, color .2s, transform .2s var(--al-ease), opacity .2s;
}
.al-redondo:hover { background: var(--al-acento); color: var(--al-ink); transform: scale(1.06); }
.al-redondo:disabled { opacity: .35; cursor: default; transform: none; background: rgba(255, 255, 255, .1); color: #fff; }
.al-redondo .al-ico { width: 22px; height: 22px; }
.al-galeria {
    display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 18px max(20px, calc((100vw - 1180px) / 2)) 26px;
    scroll-padding-inline: max(20px, calc((100vw - 1180px) / 2));
    scrollbar-width: none;
}
.al-galeria::-webkit-scrollbar { display: none; }
.al-captura { flex: 0 0 272px; scroll-snap-align: start; display: flex; flex-direction: column; gap: 18px; }
.al-captura button { position: relative; display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: 42px; }
.al-captura .al-phone { display: block; border-radius: 42px; padding: 9px; box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .6), inset 0 0 0 2px #475569; transition: transform .45s var(--al-ease), box-shadow .45s var(--al-ease); }
.al-captura .al-phone img { border-radius: 33px; }
.al-captura button:hover .al-phone, .al-captura button:focus-visible .al-phone { transform: translateY(-12px); box-shadow: 0 44px 70px -26px rgba(0, 0, 0, .7), inset 0 0 0 2px var(--al-acento); }
.al-captura__zoom {
    position: absolute; left: 50%; bottom: 26px; transform: translate(-50%, 10px);
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; border-radius: var(--al-r-pill);
    background: var(--al-acento); color: var(--al-ink); font-weight: 800; font-size: .86rem;
    box-shadow: 0 12px 26px -10px rgba(255, 156, 0, .9);
    opacity: 0; transition: opacity .25s, transform .35s var(--al-ease);
}
.al-captura button:hover .al-captura__zoom, .al-captura button:focus-visible .al-captura__zoom { opacity: 1; transform: translate(-50%, -12px); }
.al-captura figcaption { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: start; padding: 0 4px; }
.al-captura__ico { grid-row: span 2; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: var(--al-acento); }
.al-captura figcaption b { color: #fff; font-size: 1rem; }
.al-captura figcaption small { color: var(--al-slate-300); font-size: .84rem; line-height: 1.45; }
.al-galeria__puntos { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.al-galeria__puntos button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 9px; background: rgba(255, 255, 255, .28); cursor: pointer; transition: width .3s var(--al-ease), background .3s; }
.al-galeria__puntos button.is-activo { width: 28px; background: var(--al-acento); }

.al-visor { width: min(980px, 100% - 24px); max-width: none; max-height: none; padding: 0; border: 0; border-radius: 32px; background: transparent; overflow: visible; }
.al-visor::backdrop { background: rgba(10, 25, 41, .82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.al-visor[open] { animation: al-visor-entra .35s var(--al-ease); }
@keyframes al-visor-entra { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.al-visor__caja {
    position: relative; display: grid; grid-template-columns: auto minmax(0, 360px) 1fr auto; align-items: center; gap: 28px;
    padding: 34px 26px; border-radius: 32px;
    background: linear-gradient(160deg, var(--al-slate) 0%, var(--al-slate-900) 100%);
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .7);
}
.al-visor__movil .al-phone { width: min(340px, 100%); max-height: 80vh; aspect-ratio: 620 / 1347; margin: 0 auto; }
.al-visor__movil .al-phone img { height: 100%; object-fit: cover; object-position: top; }
.al-visor__texto { align-self: center; }
.al-visor__contador { display: inline-block; padding: 6px 12px; border-radius: var(--al-r-pill); background: rgba(255, 255, 255, .1); color: var(--al-slate-100); font-weight: 800; font-size: .8rem; letter-spacing: .06em; }
.al-visor__texto h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 16px 0 10px; }
.al-visor__texto p { color: var(--al-slate-100); font-size: 1.05rem; }
.al-visor__miniaturas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.al-visor__miniaturas button { width: 46px; height: 64px; padding: 0; border: 0; border-radius: 10px; overflow: hidden; cursor: pointer; opacity: .5; box-shadow: inset 0 0 0 2px transparent; background: #0F172A; transition: opacity .2s, transform .2s; }
.al-visor__miniaturas button img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.al-visor__miniaturas button:hover { opacity: .85; transform: translateY(-2px); }
.al-visor__miniaturas button.is-activo { opacity: 1; outline: 2px solid var(--al-acento); outline-offset: 2px; }
.al-visor__cerrar, .al-visor__nav {
    width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
    display: grid; place-items: center; background: rgba(255, 255, 255, .12); color: #fff;
    transition: background .2s, color .2s, transform .2s var(--al-ease);
}
.al-visor__cerrar:hover, .al-visor__nav:hover { background: var(--al-acento); color: var(--al-ink); transform: scale(1.06); }
.al-visor__cerrar { position: absolute; top: 14px; right: 14px; z-index: 2; }
.al-visor__cerrar .al-ico, .al-visor__nav .al-ico { width: 22px; height: 22px; }
body.al-sin-scroll { overflow: hidden; }

/* ---------- Facturación ---------- */
.al-flujo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; counter-reset: flujo; }
.al-flujo li { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 22px 14px; border-radius: var(--al-r-md); background: #fff; box-shadow: inset 0 0 0 1px var(--al-linea); }
.al-flujo li:not(:last-child)::after {
    content: ""; position: absolute; right: -14px; top: 50%; width: 12px; height: 12px; z-index: 1;
    border-top: 2.5px solid var(--al-acento); border-right: 2.5px solid var(--al-acento); transform: translateY(-50%) rotate(45deg);
}
.al-flujo span { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--al-slate); color: #fff; margin-bottom: 8px; }
.al-flujo span .al-ico { width: 26px; height: 26px; }
.al-flujo b { font-size: 1rem; }
.al-flujo small { color: var(--al-muted); font-size: .85rem; }

.al-paises { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.al-paises > * { min-width: 0; }
.al-pais { padding: 30px; border-radius: var(--al-r-lg); background: #fff; box-shadow: inset 0 0 0 1px var(--al-linea); }
.al-pais header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.al-pais h3 { font-size: 1.3rem; }
.al-pais header small { color: var(--al-muted); font-weight: 600; }
.al-bandera { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--al-slate); color: #fff; }
.al-bandera .al-ico { width: 26px; height: 26px; }
.al-bandera--acento { background: var(--al-acento); color: var(--al-ink); }

.al-doc {
    margin-bottom: 24px; padding: 18px; border-radius: 18px;
    background: linear-gradient(180deg, var(--al-fondo), #fff);
    box-shadow: inset 0 0 0 1px var(--al-linea);
}
.al-doc__cab { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 2px solid var(--al-slate); }
.al-doc__cab b { letter-spacing: .12em; font-size: .82rem; color: var(--al-slate); }
.al-doc__cab span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; color: var(--al-body); }
.al-doc__lineas { display: grid; gap: 8px; padding: 12px 0; border-bottom: 1px dashed var(--al-slate-300); font-size: .86rem; }
.al-doc__lineas div { display: flex; justify-content: space-between; gap: 10px; color: var(--al-body); }
.al-doc__lineas div span:last-child { font-weight: 700; color: var(--al-ink); font-variant-numeric: tabular-nums; }
.al-doc__pie { display: flex; align-items: center; gap: 16px; padding-top: 14px; }
.al-doc__pie img { width: 64px; height: 64px; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--al-linea); }
.al-doc__pie > div { flex: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; row-gap: 2px; }
.al-doc__pie small { grid-column: 1 / -1; font-size: .7rem; font-weight: 800; letter-spacing: .08em; color: var(--al-muted); }
.al-doc__pie b { font-size: 1.4rem; letter-spacing: -.02em; }
.al-doc__firma { width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: var(--al-slate-50); color: var(--al-slate); }
.al-doc__firma .al-ico { width: 30px; height: 30px; }
.al-doc__firma--acento { background: var(--al-acento-suave); color: var(--al-acento-texto); }
.al-sello { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; border-radius: var(--al-r-pill); font-size: .76rem; font-weight: 800; }
.al-sello .al-ico { width: 14px; height: 14px; }
.al-sello--ok { background: var(--al-ok-suave); color: var(--al-ok); }
.al-sello--pro { background: var(--al-acento); color: var(--al-ink); }
.al-sello--acento { background: var(--al-acento-suave); color: var(--al-acento-texto); }

.al-lista { display: grid; gap: 12px; }
.al-lista li { display: flex; gap: 10px; align-items: flex-start; color: var(--al-body); line-height: 1.5; }
.al-lista .al-ico { color: var(--al-slate); margin-top: 1px; width: 1.25em; height: 1.25em; }
.al-nota {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin: 28px auto 0; max-width: 820px; text-align: left;
    padding: 16px 22px; border-radius: var(--al-r-md);
    background: var(--al-acento-suave); color: var(--al-ink); font-weight: 600;
}
.al-nota .al-ico { width: 28px; height: 28px; flex: none; color: var(--al-acento-texto); }

/* ---------- Informe IA ---------- */
.al-ia { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.al-ia h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 16px; }
.al-ia__texto > p { font-size: 1.08rem; margin-bottom: 28px; }
.al-ia__mini { display: grid; gap: 12px; }
.al-ia__mini > div {
    display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: center;
    padding: 14px 16px; border-radius: 18px;
    background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.al-ia__mini span { grid-row: span 2; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--al-acento); color: var(--al-ink); }
.al-ia__mini b { color: #fff; }
.al-ia__mini small { color: var(--al-slate-300); font-size: .88rem; }

.al-informe {
    position: relative; padding: 24px; border-radius: var(--al-r-lg);
    background: #fff; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
    transform: rotate(1.5deg);
}
.al-informe::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border-radius: inherit; background: rgba(255, 255, 255, .12); z-index: -1; }
.al-informe__cab { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.al-informe__cab > div { flex: 1; display: flex; flex-direction: column; }
.al-informe__cab small { color: var(--al-muted); font-weight: 600; }
.al-informe__logo { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--al-slate); }
.al-informe__logo img { width: 26px; }
.al-informe__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.al-informe__kpis div { padding: 12px; border-radius: 14px; background: var(--al-fondo); }
.al-informe__kpis small { display: block; font-size: .72rem; font-weight: 700; color: var(--al-muted); text-transform: uppercase; letter-spacing: .05em; }
.al-informe__kpis b { display: block; font-size: 1.15rem; margin: 2px 0; }
.al-informe__kpis em { display: inline-flex; align-items: center; gap: 3px; font-style: normal; font-size: .76rem; font-weight: 800; color: var(--al-muted); }
.al-informe__kpis em.is-sube { color: var(--al-ok); }
.al-informe__kpis em .al-ico { width: 13px; height: 13px; }
.al-informe__grafico { width: 100%; height: 100px; margin: 16px 0 10px; }
.al-informe__puntos { display: grid; gap: 10px; }
.al-informe__puntos li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 14px; background: var(--al-fondo); font-size: .9rem; font-weight: 600; color: var(--al-ink); }
.al-informe__puntos span { width: 32px; height: 32px; flex: none; border-radius: 10px; display: grid; place-items: center; }
.al-informe__puntos span .al-ico { width: 18px; height: 18px; }
.al-informe__puntos .is-ok { background: var(--al-ok-suave); color: var(--al-ok); }
.al-informe__puntos .is-aviso { background: var(--al-acento-suave); color: var(--al-aviso); }
.al-informe__puntos .is-idea { background: var(--al-slate-50); color: var(--al-slate); }

/* ---------- Pasos ---------- */
.al-pasos { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.al-pasos::before { content: ""; position: absolute; top: 44px; left: 16%; right: 16%; border-top: 2.5px dashed var(--al-slate-100); }
.al-pasos li { position: relative; text-align: center; padding: 0 18px; }
.al-pasos__ico {
    position: relative; width: 88px; height: 88px; margin: 0 auto; border-radius: 28px;
    display: grid; place-items: center; background: var(--al-slate); color: #fff;
    box-shadow: 0 0 0 8px #fff, 0 20px 40px -18px rgba(51, 78, 104, .8);
}
.al-pasos__ico .al-ico { width: 36px; height: 36px; }
.al-pasos__ico em { position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--al-acento); color: var(--al-ink); font-style: normal; font-weight: 800; font-size: .9rem; box-shadow: 0 0 0 4px #fff; }
.al-pasos__ico--acento { background: var(--al-acento); color: var(--al-ink); }
.al-pasos__ico--acento em { background: var(--al-slate); color: #fff; }
.al-pasos h3 { font-size: 1.3rem; margin: 26px 0 8px; }

/* ---------- Precios ---------- */
.al-planes { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 24px; align-items: stretch; }
.al-plan {
    position: relative; display: flex; flex-direction: column; gap: 22px;
    padding: 34px 30px; border-radius: var(--al-r-lg);
    background: #fff; box-shadow: inset 0 0 0 1px var(--al-linea);
}
.al-plan__cab { display: flex; align-items: center; gap: 14px; }
.al-plan__cab h3 { font-size: 1.35rem; }
.al-plan__cab small { color: var(--al-muted); font-weight: 600; }
.al-plan__precio { display: flex; align-items: baseline; gap: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--al-linea); }
.al-plan__precio b { font-size: 3rem; font-weight: 800; color: var(--al-ink); letter-spacing: -.04em; }
.al-plan__precio span { color: var(--al-muted); font-weight: 600; }
.al-plan .al-lista { flex: 1; }
.al-plan--pro { background: linear-gradient(170deg, var(--al-slate) 0%, var(--al-slate-900) 100%); box-shadow: var(--al-sombra-lg); }
.al-plan--pro h3, .al-plan--pro .al-plan__precio b { color: #fff; }
.al-plan--pro .al-plan__cab small, .al-plan--pro .al-plan__precio span { color: var(--al-slate-300); }
.al-plan--pro .al-plan__precio { border-color: rgba(255, 255, 255, .14); }
.al-plan--pro .al-lista li { color: var(--al-slate-100); }
.al-plan--pro .al-lista .al-ico { color: var(--al-acento); }
.al-plan__sello {
    position: absolute; top: -15px; right: 26px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: var(--al-r-pill);
    background: var(--al-acento); color: var(--al-ink); font-weight: 800; font-size: .8rem;
    box-shadow: 0 10px 24px -10px rgba(255, 156, 0, .8);
}
.al-plan__sello .al-ico { width: 15px; height: 15px; }
.al-plan__nota { color: var(--al-slate-300); font-size: .82rem; line-height: 1.5; text-align: center; }

/* ---------- FAQ ---------- */
.al-faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.al-faq-grid .al-cabeza { position: sticky; top: calc(var(--al-header) + 30px); }
.al-faq { display: grid; gap: 12px; }
.al-faq details { border-radius: 18px; background: var(--al-fondo); padding: 0 22px; transition: background .2s, box-shadow .2s; }
.al-faq details[open] { background: #fff; box-shadow: inset 0 0 0 1.5px var(--al-slate-100), var(--al-sombra-md); }
.al-faq summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; gap: 14px;
    padding: 18px 0; font-weight: 700; font-size: 1.04rem;
}
.al-faq summary::-webkit-details-marker { display: none; }
.al-faq summary > span { width: 38px; height: 38px; flex: none; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--al-slate); }
.al-faq details[open] summary > span { background: var(--al-slate); color: #fff; }
.al-faq summary::after { content: "+"; margin-left: auto; font-size: 1.6rem; font-weight: 400; color: var(--al-slate); transition: transform .25s var(--al-ease); }
.al-faq details[open] summary::after { transform: rotate(45deg); }
.al-faq p { padding: 0 0 20px 52px; }

/* ---------- Descarga ---------- */
.al-descarga { padding: 30px 0 100px; }
.al-descarga__caja {
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: center;
    padding: 60px 60px 0; border-radius: 36px;
    background: radial-gradient(520px 320px at 100% 0%, rgba(255, 156, 0, .25), transparent 60%), linear-gradient(150deg, var(--al-slate) 0%, var(--al-slate-900) 100%);
    box-shadow: var(--al-sombra-lg);
}
.al-descarga__marca { position: absolute; width: 420px; left: -90px; bottom: -120px; opacity: .06; transform: rotate(10deg); }
.al-descarga__texto { position: relative; padding-bottom: 60px; }
.al-descarga h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 12px; }
.al-descarga p { color: var(--al-slate-100); font-size: 1.08rem; margin-bottom: 28px; }
.al-descarga__ok { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; }
.al-descarga__ok li { display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; font-size: .92rem; }
.al-descarga__ok .al-ico { color: var(--al-acento); }
.al-descarga__movil { position: relative; align-self: end; display: flex; justify-content: center; }
.al-descarga__movil .al-phone { width: 270px; margin-bottom: -120px; transform: rotate(6deg); }

/* ---------- Pie ---------- */
.al-footer { background: var(--al-slate-900); color: var(--al-slate-100); padding: 64px 0 26px; }
.al-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.al-footer__marca img { height: 38px; width: auto; margin-bottom: 14px; }
.al-footer__marca p { color: var(--al-slate-300); }
.al-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .06em; margin-bottom: 16px; }
.al-footer__col { display: flex; flex-direction: column; gap: 12px; }
.al-footer__col a { display: inline-flex; align-items: center; gap: 10px; color: var(--al-slate-100); transition: color .2s; }
.al-footer__col a .al-ico { color: var(--al-acento); }
.al-footer__col a:hover { color: var(--al-acento); }
.al-footer__base {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
    color: var(--al-slate-300); font-size: .86rem;
}
.al-footer__acceso { color: var(--al-slate-400); font-size: .8rem; }
.al-footer__acceso:hover { color: #fff; }

/* ---------- Barra inferior móvil ---------- */
.al-barra { display: none; }

/* ---------- Revelado al hacer scroll ---------- */
.al-revelar { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--al-ease), transform .7s var(--al-ease); }
.al-revelar.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .al-nav { display: none; }
    .al-burger { display: inline-flex; }
    .al-bento { grid-template-columns: 1fr 1fr; }
    .al-card--grande { grid-row: span 1; grid-column: span 2; }
    .al-card__captura { width: 40%; }
    .al-cifras__grid { grid-template-columns: 1fr 1fr; }
    .al-hero__visual { min-height: 540px; }
    .al-float--b { left: -8%; }
}

@media (max-width: 860px) {
    :root { --al-header: 64px; }
    .al-header__cta .al-btn { display: none; }
    .al-hero { padding: 40px 0 64px; }
    .al-hero__grid, .al-ia, .al-paises, .al-faq-grid, .al-descarga__caja { grid-template-columns: 1fr; }
    .al-hero__texto { text-align: center; }
    .al-hero h1, .al-hero__lead { margin-inline: auto; }
    .al-hero .al-stores, .al-hero__confianza { justify-content: center; }
    .al-hero__visual { min-height: 500px; }
    .al-phone--hero { width: 240px; }
    .al-phone--atras { width: 200px; }
    .al-float { font-size: .8rem; padding: 10px 14px 10px 10px; }
    .al-float__ico { width: 34px; height: 34px; }
    .al-float--a { right: -2%; }
    .al-float--b { left: -2%; }
    .al-seccion { padding: 76px 0; }
    .al-cabeza-fila { flex-direction: column; align-items: flex-start; }
    .al-galeria__botones { display: none; }
    .al-visor__caja { grid-template-columns: 1fr; gap: 18px; padding: 56px 18px 22px; text-align: center; }
    .al-visor__movil .al-phone { width: min(250px, 70vw); max-height: 58vh; }
    .al-visor__nav { position: absolute; top: 40%; z-index: 2; }
    .al-visor__nav--prev { left: 10px; }
    .al-visor__nav--next { right: 10px; }
    .al-visor__miniaturas { justify-content: center; margin-top: 16px; }
    .al-visor__texto p { font-size: .95rem; }
    .al-flujo { grid-template-columns: 1fr 1fr; }
    .al-flujo li:nth-child(2)::after { display: none; }
    .al-pasos { grid-template-columns: 1fr; gap: 40px; }
    .al-pasos::before { display: none; }
    .al-planes { grid-template-columns: minmax(0, 460px); }
    .al-faq-grid .al-cabeza { position: static; margin-bottom: 0; }
    .al-descarga__caja { padding: 40px 26px 0; text-align: center; }
    .al-descarga__texto { padding-bottom: 10px; }
    .al-descarga .al-stores, .al-descarga__ok { justify-content: center; }
    .al-descarga__movil .al-phone { width: 220px; margin-bottom: -150px; }
    .al-footer__grid { grid-template-columns: 1fr 1fr; }
    .al-footer__marca { grid-column: 1 / -1; }

    body { padding-bottom: 84px; }
    .al-barra {
        position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
        display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
        padding: 6px; border-radius: 24px;
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 12px 34px -8px rgba(16, 42, 67, .38), inset 0 0 0 1px var(--al-linea);
        margin-bottom: env(safe-area-inset-bottom);
    }
    .al-barra a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; border-radius: 18px; font-size: .72rem; font-weight: 700; color: var(--al-body); }
    .al-barra .al-ico { width: 22px; height: 22px; }
    .al-barra__destacado { background: var(--al-acento); color: var(--al-ink) !important; }
}

@media (max-width: 560px) {
    .al-eyebrow { font-size: .68rem; letter-spacing: .03em; }
    .al-bento { grid-template-columns: 1fr; }
    .al-card--grande { grid-column: span 1; }
    .al-card__captura { width: 72%; }
    .al-card--ancha { flex-direction: column; align-items: flex-start; }
    .al-cifras__grid { grid-template-columns: 1fr; }
    .al-hero__visual { min-height: 440px; }
    .al-phone--hero { width: 210px; }
    .al-phone--atras { width: 170px; }
    .al-float--c { display: none; }
    .al-flujo { grid-template-columns: 1fr; }
    .al-flujo li::after { display: none; }
    .al-doc__pie b { font-size: 1.15rem; }
    .al-pais { padding: 22px 18px; }
    .al-doc { padding: 14px; }
    .al-informe { transform: none; padding: 18px; }
    .al-informe__kpis b { font-size: .98rem; }
    .al-faq p { padding-left: 0; }
    .al-captura { flex-basis: 230px; }
    .al-visor__miniaturas { display: none; }
    .al-footer__grid { grid-template-columns: 1fr; }
    .al-footer__base { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html, .al-galeria { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .al-revelar { opacity: 1; transform: none; }
}
