/* ═══════════════════════════════════════
   BRAND TOKENS — colores oficiales RiskIAs
   (NO CAMBIAR: son los mismos del TPV)
═══════════════════════════════════════ */
:root {
    --navy:   #0D1B2A;
    --navy2:  #1A2B3C;
    --navy3:  #16283a;
    --blue:   #0066FF;
    --blue2:  #3D8EFF;
    --bglow:  rgba(0,102,255,0.14);
    --red:    #E8132A;
    --yellow: #FFD600;
    --green:  #00B87A;
    --cream:  #FFF8F0;
    --g50:    #F8F9FA;
    --g100:   #EFEFEF;
    --g200:   #E4E7EC;
    --g400:   #9CA3AF;
    --g600:   #6B7280;
    --text:   #1A1A2E;
    --white:  #FFFFFF;

    --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
    --s5: 48px; --s6: 64px; --s7: 80px; --s8: 100px;

    --radius: 18px;
    --safe-top:    env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.62; overflow-x: hidden; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.13; letter-spacing: -.02em; }
a { color: inherit; }
::selection { background: var(--blue); color: #fff; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 5%; }
section { padding: var(--s7) 0; }
@media (min-width: 900px) { section { padding: var(--s8) 0; } }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp     { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes pulseRing  { 0%{transform:scale(1);opacity:.6;} 100%{transform:scale(1.6);opacity:0;} }
@keyframes float      { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
@keyframes marquee    { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
@keyframes glowShift  { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(4%,-4%) scale(1.12);} }
@keyframes blink      { 0%,100%{opacity:1;} 50%{opacity:.25;} }
@keyframes ticketIn   { from{opacity:0;transform:translateX(10px);} to{opacity:1;transform:translateX(0);} }

.reveal { opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
    .reveal { opacity:1; transform:none; }
}

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

/* ═══════════════════════════════════════
   HEADER — logo de marca intacto
═══════════════════════════════════════ */
header {
    position: sticky; top: 0; z-index: 1000;
    padding: 14px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(13,27,42,.94);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.logo {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.85rem;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 4px; letter-spacing: -.02em;
    transition: transform .25s ease; line-height: 1;
}
.logo:hover { transform: scale(1.04); }
.logo-dot { color: var(--blue); position: relative; display: inline-block; }
.logo-dot::after {
    content: ''; position: absolute; top: 8px; right: -6px;
    width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
    box-shadow: 0 0 10px var(--blue), 0 0 20px var(--blue);
}
@media (min-width: 900px) { .logo { font-size: 2.1rem; } }

.desktop-nav { display: none; align-items: center; gap: 26px; }
.desktop-nav a {
    color: rgba(255,255,255,.75); text-decoration: none; font-size: .88rem;
    font-weight: 500; transition: color .2s; padding: 6px 0;
}
.desktop-nav a:hover { color: var(--white); }
@media (min-width: 980px) { .desktop-nav { display: flex; } }

/* ═══ BOTONES ═══ */
.btn-primary, .btn-ghost, .btn-light {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; text-decoration: none; border-radius: 50px;
    font-weight: 600; font-size: .92rem; border: none; cursor: pointer;
    white-space: nowrap; min-height: 48px; position: relative;
    font-family: 'Inter', sans-serif;
    transition: transform .2s, box-shadow .25s, background .25s, color .25s;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 24px rgba(0,102,255,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,102,255,.42); background: #0a5ce0; }
.btn-ghost { background: rgba(255,255,255,.07); color: var(--white); border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--navy); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.2); }
.btn-sm { padding: 10px 18px; font-size: .85rem; min-height: 42px; }

/* ═══ HAMBURGER ═══ */
.hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span {
    display: block; width: 26px; height: 2.5px; background: var(--white);
    border-radius: 2px; margin-left: auto; margin-right: auto;
    transition: transform .3s ease, opacity .2s ease, width .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 980px) { .hamburger { display: none; } }

body.menu-open .logo, body.menu-open .header-cta { opacity: 0; pointer-events: none; transition: opacity .2s; }
.header-cta { display: none; }
@media (min-width: 980px) { .header-cta { display: inline-flex; margin-left: 8px; } }

/* ═══ MOBILE NAV ═══ */
.mobile-nav {
    position: fixed; inset: 0; z-index: 999;
    background: linear-gradient(165deg, var(--navy) 0%, #0a1522 100%);
    display: flex; flex-direction: column;
    padding: calc(74px + var(--safe-top)) 8% calc(28px + var(--safe-bottom));
    transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-logo { margin-bottom: 30px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: auto; }
.mobile-nav-links a {
    color: rgba(255,255,255,.92); text-decoration: none;
    font-family: 'Outfit', sans-serif; font-size: 1.45rem; font-weight: 600;
    padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: space-between;
    transition: color .2s, padding-left .2s;
}
.mobile-nav-links a:hover { color: var(--blue2); padding-left: 6px; }
.mobile-nav-links a svg { opacity: .35; }
.mobile-nav-wa {
    display: flex; align-items: center; gap: 12px; margin-top: 28px;
    padding: 16px 20px; border-radius: 14px; text-decoration: none;
    background: linear-gradient(135deg, #25D366, #12a856); color: #fff;
    font-weight: 700; font-size: 1rem; box-shadow: 0 10px 26px rgba(37,211,102,.3);
}
.mobile-nav-wa small { display: block; font-weight: 500; font-size: .76rem; opacity: .88; }
.mobile-nav-note { margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,.42); text-align: center; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative; overflow: hidden;
    background: var(--navy); color: var(--white);
    padding: var(--s6) 0 var(--s7);
}
.hero::before {
    content: ''; position: absolute; top: -18%; left: -12%;
    width: 62%; height: 78%; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,255,.30) 0%, transparent 68%);
    filter: blur(36px); animation: glowShift 14s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -22%; right: -14%;
    width: 58%; height: 72%; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,122,.20) 0%, transparent 68%);
    filter: blur(40px); animation: glowShift 17s ease-in-out infinite reverse;
}
.hero-grid-bg {
    position: absolute; inset: 0; opacity: .5;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-cols { display: grid; gap: var(--s6); align-items: center; }
@media (min-width: 1000px) { .hero-cols { grid-template-columns: 1.02fr .98fr; gap: var(--s5); } }

.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px; border-radius: 50px;
    background: rgba(0,102,255,.13); border: 1px solid rgba(0,102,255,.34);
    font-size: .78rem; font-weight: 600; letter-spacing: .01em;
    color: rgba(255,255,255,.9); margin-bottom: 22px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: relative; }
.hero-badge-dot::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: var(--green); animation: pulseRing 1.9s ease-out infinite;
}
.hero h1 {
    font-size: clamp(2.3rem, 7.4vw, 4rem); font-weight: 900;
    margin-bottom: 20px; letter-spacing: -.035em;
}
.hero h1 em { font-style: normal; color: var(--blue2); position: relative; white-space: nowrap; }
.hero h1 em::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .12em;
    background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 4px; opacity: .55;
}
.hero-sub {
    font-size: clamp(1rem, 2.4vw, 1.16rem); color: rgba(255,255,255,.72);
    max-width: 540px; margin-bottom: 30px;
}
.hero-sub strong { color: rgba(255,255,255,.95); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-tick { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-tick span { display: flex; align-items: center; gap: 7px; font-size: .84rem; color: rgba(255,255,255,.62); }
.hero-tick svg { color: var(--green); flex-shrink: 0; }

/* ═══ MOCKUP TPV (100% CSS — se ve bien desde el día 1) ═══ */
.tpv-stage { position: relative; display: flex; justify-content: center; align-items: center; }
.tpv {
    width: 100%; max-width: 470px;
    background: linear-gradient(160deg, #16283a, #0f1e2e);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px; padding: 12px;
    box-shadow: 0 34px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(0,102,255,.1);
    animation: float 7s ease-in-out infinite;
}
.tpv-screen { background: #0a1420; border-radius: 14px; overflow: hidden; }
.tpv-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.tpv-top-l { display: flex; align-items: center; gap: 9px; }
.tpv-table {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .92rem; color: #fff;
}
.tpv-chip {
    font-size: .62rem; font-weight: 700; padding: 3px 8px; border-radius: 20px;
    background: rgba(0,184,122,.16); color: #3ee0a8; letter-spacing: .04em;
}
.tpv-time { font-size: .68rem; color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; }
.tpv-body { display: grid; grid-template-columns: 1.25fr 1fr; min-height: 268px; }
.tpv-left { padding: 12px; border-right: 1px solid rgba(255,255,255,.07); }
.tpv-cats { display: flex; gap: 6px; margin-bottom: 11px; overflow: hidden; }
.tpv-cat {
    font-size: .6rem; font-weight: 700; padding: 5px 10px; border-radius: 20px;
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); white-space: nowrap;
}
.tpv-cat.on { background: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(0,102,255,.4); }
.tpv-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.tpv-item {
    aspect-ratio: 1/.82; border-radius: 9px; padding: 7px 6px;
    background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.06);
    display: flex; flex-direction: column; justify-content: space-between;
}
.tpv-item b { font-size: .58rem; font-weight: 600; color: rgba(255,255,255,.82); line-height: 1.2; }
.tpv-item i { font-style: normal; font-size: .56rem; color: var(--blue2); font-weight: 700; }
.tpv-item.hot { background: rgba(0,102,255,.14); border-color: rgba(0,102,255,.4); }
.tpv-right { padding: 12px; display: flex; flex-direction: column; }
.tpv-rh { font-size: .58rem; font-weight: 800; letter-spacing: .1em; color: rgba(255,255,255,.34); margin-bottom: 9px; }
.tpv-line {
    display: flex; justify-content: space-between; align-items: baseline; gap: 6px;
    font-size: .63rem; padding: 5px 0; border-bottom: 1px dashed rgba(255,255,255,.07);
    animation: ticketIn .5s ease backwards;
}
.tpv-line:nth-child(2){animation-delay:.15s} .tpv-line:nth-child(3){animation-delay:.3s}
.tpv-line:nth-child(4){animation-delay:.45s} .tpv-line:nth-child(5){animation-delay:.6s}
.tpv-line span { color: rgba(255,255,255,.72); }
.tpv-line span em { font-style: normal; color: rgba(255,255,255,.35); margin-right: 4px; }
.tpv-line b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.tpv-total {
    margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; align-items: baseline;
}
.tpv-total span { font-size: .62rem; color: rgba(255,255,255,.45); font-weight: 600; }
.tpv-total b { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; }
.tpv-pay {
    margin-top: 10px; border-radius: 10px; padding: 11px;
    background: linear-gradient(135deg, var(--green), #009e68);
    text-align: center; font-size: .74rem; font-weight: 800; color: #fff;
    letter-spacing: .05em; box-shadow: 0 8px 20px rgba(0,184,122,.3);
}
.tpv-float {
    position: absolute; display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.96); color: var(--navy);
    padding: 9px 13px; border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.3);
    font-size: .72rem; font-weight: 700; backdrop-filter: blur(8px);
}
.tpv-float small { display: block; font-weight: 500; font-size: .62rem; color: var(--g600); }
.tpv-float-a { bottom: 4%; left: -4%; animation: float 6s ease-in-out infinite .6s; }
.tpv-float-b { top: 6%; right: -4%; animation: float 6.6s ease-in-out infinite 1.1s; }
.tpv-float-ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
@media (max-width: 520px) {
    .tpv-float-a { left: -2%; bottom: 1%; } .tpv-float-b { right: -2%; top: 2%; }
    .tpv-float { font-size: .66rem; padding: 8px 11px; }
}

/* ═══════════════════════════════════════
   MARQUEE — tipos de negocio
═══════════════════════════════════════ */
.marquee-wrap {
    background: var(--navy2); padding: 16px 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-set { display: flex; align-items: center; gap: 38px; padding-right: 38px; }
.marquee-set span {
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
    color: rgba(255,255,255,.38); white-space: nowrap; letter-spacing: .01em;
}
.marquee-set i { color: var(--blue); font-style: normal; }

/* ═══════════════════════════════════════
   SECTION HEADS
═══════════════════════════════════════ */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
.sec-title { font-size: clamp(1.75rem, 4.6vw, 2.75rem); font-weight: 800; margin-bottom: 14px; }
.sec-sub { font-size: 1.02rem; color: var(--g600); max-width: 620px; }
.sec-head { margin-bottom: var(--s5); }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow::before { display: none; }

/* ═══════════════════════════════════════
   DOLORES → SOLUCIÓN
═══════════════════════════════════════ */
#problema { background: var(--g50); }
.pain-grid { display: grid; gap: var(--s3); }
@media (min-width: 760px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pain-grid { grid-template-columns: repeat(4, 1fr); } }
.pain {
    background: var(--white); border: 1px solid var(--g200); border-radius: var(--radius);
    padding: 26px 22px; transition: transform .28s, box-shadow .28s, border-color .28s;
}
.pain:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(13,27,42,.09); border-color: rgba(0,102,255,.3); }
.pain-x {
    width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
    background: rgba(232,19,42,.08); color: var(--red); margin-bottom: 15px;
}
.pain h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 8px; }
.pain p { font-size: .9rem; color: var(--g600); }
.pain-fix {
    display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; padding-top: 13px;
    border-top: 1px dashed var(--g200); font-size: .84rem; font-weight: 600; color: var(--navy);
}
.pain-fix svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ═══════════════════════════════════════
   FUNCIONES
═══════════════════════════════════════ */
.feat-grid { display: grid; gap: var(--s3); }
@media (min-width: 700px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat {
    position: relative; border-radius: var(--radius); padding: 30px 26px;
    background: var(--white); border: 1px solid var(--g200);
    transition: transform .3s, box-shadow .3s, border-color .3s; overflow: hidden;
}
.feat::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0); transform-origin: left; transition: transform .38s ease;
}
.feat:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(13,27,42,.1); border-color: transparent; }
.feat:hover::before { transform: scaleX(1); }
.feat-ic {
    width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(0,102,255,.1), rgba(0,184,122,.09));
    color: var(--blue); margin-bottom: 17px;
}
.feat h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 9px; }
.feat p { font-size: .92rem; color: var(--g600); }
.feat-tag {
    display: inline-block; margin-top: 13px; font-size: .68rem; font-weight: 800;
    letter-spacing: .07em; text-transform: uppercase;
    color: var(--blue); background: rgba(0,102,255,.08); padding: 4px 10px; border-radius: 20px;
}

/* ═══════════════════════════════════════
   MEDIA SLOTS — HUECOS PARA TUS FOTOS Y VÍDEOS
   Para rellenar uno: mete <img> o <video> dentro del div.
═══════════════════════════════════════ */
.slot {
    position: relative; overflow: hidden; border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(0,102,255,.05), rgba(0,184,122,.05)),
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(13,27,42,.022) 12px 24px);
    border: 2px dashed rgba(0,102,255,.3);
    display: grid; place-items: center; text-align: center; padding: 30px 22px;
    min-height: 200px; transition: border-color .3s, background .3s;
}
.slot:hover { border-color: rgba(0,102,255,.55); }
.slot > img, .slot > video, .slot > iframe {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border: 0; z-index: 3;
}
/* En cuanto metes una foto o vídeo, el marco punteado desaparece solo */
.slot:has(> img), .slot:has(> video), .slot:has(> iframe) { border-color: transparent; padding: 0; background: var(--navy); }
.slot:has(> img) .slot-in, .slot:has(> video) .slot-in, .slot:has(> iframe) .slot-in { display: none; }

.slot--dark {
    background:
        linear-gradient(135deg, rgba(0,102,255,.11), rgba(0,184,122,.07)),
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.022) 12px 24px);
    border-color: rgba(255,255,255,.2);
}
.slot--dark .slot-label { color: #fff; }
.slot--dark .slot-hint  { color: rgba(255,255,255,.5); }
.slot--dark .slot-ic    { background: rgba(255,255,255,.08); color: #fff; }

/* Las proporciones mandan sobre el min-height para que la foto encaje igual */
.slot--wide  { aspect-ratio: 16/9; min-height: 0; }
.slot--sq    { aspect-ratio: 1/1;  min-height: 0; }
.slot--tall  { aspect-ratio: 4/5;  min-height: 0; }
.slot--video { aspect-ratio: 16/9; min-height: 0; }

.slot-in { position: relative; z-index: 2; max-width: 280px; }
.slot-ic {
    width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 13px;
    display: grid; place-items: center;
    background: rgba(0,102,255,.1); color: var(--blue);
}
.slot--video .slot-ic {
    width: 62px; height: 62px;
    background: var(--blue); color: #fff; box-shadow: 0 10px 28px rgba(0,102,255,.4);
}
.slot-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .98rem; color: var(--navy); margin-bottom: 5px; }
.slot-hint  { font-size: .78rem; color: var(--g600); line-height: 1.5; }

/* Galería de fotos */
.gallery { display: grid; gap: var(--s2); }
@media (min-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery .slot-tall-span { grid-row: span 1; }

/* Vídeos */
.video-grid { display: grid; gap: var(--s3); }
@media (min-width: 900px) { .video-grid { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.video-side { display: grid; gap: var(--s3); }
.video-cap { margin-top: 12px; }
.video-cap h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.video-cap p { font-size: .87rem; color: var(--g600); }
#video { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
#video::before {
    content: ''; position: absolute; top: -20%; right: -10%; width: 50%; height: 70%;
    background: radial-gradient(circle, rgba(0,102,255,.2), transparent 70%); filter: blur(50px);
}
#video .wrap { position: relative; z-index: 2; }
#video .sec-sub { color: rgba(255,255,255,.65); }
#video .video-cap h3 { color: #fff; }
#video .video-cap p { color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════
   CARTA DIGITAL QR
═══════════════════════════════════════ */
#carta { background: var(--cream); }
.carta-grid { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 960px) { .carta-grid { grid-template-columns: 1fr 1fr; } }
.carta-list { display: grid; gap: 14px; margin-top: 26px; }
.carta-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; }
.carta-list svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.carta-list b { display: block; font-size: .96rem; font-weight: 700; margin-bottom: 2px; }
.carta-list p { font-size: .87rem; color: var(--g600); }
.phone-stage { display: flex; justify-content: center; }
.phone {
    width: 250px; background: #0a1420; border: 9px solid #1b2836; border-radius: 34px;
    padding: 0; overflow: hidden; box-shadow: 0 28px 60px rgba(13,27,42,.3);
    animation: float 7.5s ease-in-out infinite;
}
.phone-notch { height: 20px; background: #1b2836; position: relative; }
.phone-notch::after {
    content: ''; position: absolute; left: 50%; top: 4px; transform: translateX(-50%);
    width: 62px; height: 5px; background: #0a1420; border-radius: 10px;
}
.phone-inner { background: #fff; min-height: 400px; padding: 16px 14px; }
.phone-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.15rem; color: var(--navy); text-align: center; margin-bottom: 3px; }
.phone-logo span { color: var(--blue); }
.phone-tag { text-align: center; font-size: .58rem; color: var(--g400); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.phone-cats { display: flex; gap: 5px; margin-bottom: 13px; }
.phone-cats span { font-size: .55rem; font-weight: 700; padding: 4px 9px; border-radius: 20px; background: var(--g100); color: var(--g600); }
.phone-cats span.on { background: var(--navy); color: #fff; }
.phone-dish { display: flex; gap: 10px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--g100); }
.phone-dish-img { width: 42px; height: 42px; border-radius: 9px; background: linear-gradient(135deg, #e8eef7, #d5e0f0); flex-shrink: 0; display:grid; place-items:center; color: var(--g400); }
.phone-dish-t { flex: 1; min-width: 0; }
.phone-dish-t b { display: block; font-size: .66rem; font-weight: 700; color: var(--navy); }
.phone-dish-t small { font-size: .56rem; color: var(--g400); }
.phone-dish-p { font-size: .68rem; font-weight: 800; color: var(--blue); font-family: 'Outfit', sans-serif; }
.phone-badge {
    margin-top: 13px; text-align: center; font-size: .58rem; font-weight: 700;
    color: var(--green); background: rgba(0,184,122,.1); padding: 7px; border-radius: 8px;
}

/* ═══════════════════════════════════════
   FORMACIÓN / ACADEMIA
═══════════════════════════════════════ */
#formacion { background: var(--g50); }
.course-grid { display: grid; gap: var(--s3); }
@media (min-width: 700px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .course-grid { grid-template-columns: repeat(3, 1fr); } }
.course {
    background: var(--white); border: 1px solid var(--g200); border-radius: var(--radius);
    overflow: hidden; transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
}
.course:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(13,27,42,.1); }
.course .slot { border-radius: 0; border-width: 0 0 2px 0; min-height: 0; }
.course-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.course-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.course-num {
    font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .72rem;
    background: var(--navy); color: #fff; width: 24px; height: 24px;
    border-radius: 7px; display: grid; place-items: center; flex-shrink: 0;
}
.course-time { font-size: .7rem; font-weight: 700; color: var(--g600); display: flex; align-items: center; gap: 5px; }
.course h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 7px; }
.course p { font-size: .87rem; color: var(--g600); }
.course-soon {
    margin-top: auto; padding-top: 14px; font-size: .7rem; font-weight: 800;
    letter-spacing: .07em; text-transform: uppercase; color: var(--blue);
}

/* ═══════════════════════════════════════
   PASOS
═══════════════════════════════════════ */
.step-grid { display: grid; gap: var(--s4); }
@media (min-width: 900px) { .step-grid { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; }
.step-img-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/3; margin-bottom: 20px; background: var(--g100);
    box-shadow: 0 16px 40px rgba(13,27,42,.12);
}
.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.step:hover .step-img-wrap img { transform: scale(1.05); }
.riskias-img-badge {
    position: absolute; bottom: 12px; left: 12px; z-index: 2;
    display: flex; align-items: center; gap: 7px;
    padding: 7px 12px; border-radius: 50px;
    background: rgba(13,27,42,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.14);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); position: relative; }
.badge-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: pulseRing 2s ease-out infinite; }
.badge-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: .88rem; color: #fff; letter-spacing: .01em; }
.badge-text span { color: var(--blue2); }
.step-n {
    display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 9px;
}
.step-n b {
    font-family: 'Outfit', sans-serif; font-size: .78rem; background: var(--blue); color: #fff;
    width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
}
.step h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .93rem; color: var(--g600); }

/* ═══════════════════════════════════════
   POR QUÉ
═══════════════════════════════════════ */
#porque { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
#porque::before {
    content: ''; position: absolute; bottom: -25%; left: -8%; width: 48%; height: 75%;
    background: radial-gradient(circle, rgba(0,102,255,.22), transparent 70%); filter: blur(50px);
}
#porque .wrap { position: relative; z-index: 2; }
#porque .sec-sub { color: rgba(255,255,255,.65); }
.why-grid { display: grid; gap: var(--s3); }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why {
    padding: 26px 22px; border-radius: var(--radius);
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    transition: background .3s, transform .3s, border-color .3s;
}
.why:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); border-color: rgba(0,102,255,.4); }
.why-ic {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(0,102,255,.15); color: var(--blue2); margin-bottom: 15px;
}
.why h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 8px; }
.why p { font-size: .89rem; color: rgba(255,255,255,.6); }

.stat-row { display: grid; gap: var(--s3); margin-top: var(--s5); }
@media (min-width: 620px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; padding: 24px 16px; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); }
.stat b { font-family: 'Outfit', sans-serif; display: block; font-size: 2.1rem; font-weight: 900; color: var(--blue2); line-height: 1; margin-bottom: 7px; }
.stat span { font-size: .82rem; color: rgba(255,255,255,.58); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--g200); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer; text-align: left;
    padding: 21px 44px 21px 0; position: relative;
    font-family: 'Outfit', sans-serif; font-size: 1.04rem; font-weight: 600; color: var(--navy);
}
.faq-q::after {
    content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .38s ease; }
.faq-item.open .faq-a { max-height: 420px; padding-bottom: 21px; }
.faq-a p { font-size: .94rem; color: var(--g600); }

/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
#contacto { background: var(--g50); }
.contact-grid { display: grid; gap: var(--s5); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.canal {
    display: flex; align-items: center; gap: 14px; padding: 17px 19px;
    background: var(--white); border: 1px solid var(--g200); border-radius: 14px;
    text-decoration: none; color: var(--text); margin-bottom: 13px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.canal:hover { transform: translateX(5px); box-shadow: 0 12px 28px rgba(13,27,42,.08); border-color: rgba(0,102,255,.35); }
.canal-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.canal b { display: block; font-size: .95rem; font-weight: 700; }
.canal small { font-size: .82rem; color: var(--g600); }

.form-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--radius); padding: 28px 24px; box-shadow: 0 16px 44px rgba(13,27,42,.06); }
@media (min-width: 700px) { .form-card { padding: 34px 32px; } }
.f-row { display: grid; gap: 15px; margin-bottom: 15px; }
@media (min-width: 620px) { .f-row.two { grid-template-columns: 1fr 1fr; } }
.f-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.f-group input, .f-group select, .f-group textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--g200); border-radius: 11px;
    font-family: 'Inter', sans-serif; font-size: .93rem; color: var(--text);
    background: var(--white); transition: border-color .2s, box-shadow .2s; min-height: 48px;
}
.f-group textarea { min-height: 112px; resize: vertical; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,255,.12);
}
.f-note { font-size: .76rem; color: var(--g600); margin-top: 13px; text-align: center; }
.form-card .btn-primary { width: 100%; }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, #0047b3 100%);
    color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 45%),
                      radial-gradient(circle at 80% 70%, rgba(0,184,122,.2), transparent 45%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.7rem, 4.6vw, 2.6rem); font-weight: 900; margin-bottom: 14px; }
.cta-band p { font-size: 1.03rem; color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 28px; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--navy); color: rgba(255,255,255,.6); padding: var(--s6) 0 var(--s4); }
.foot-grid { display: grid; gap: var(--s4); margin-bottom: var(--s5); }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.foot-about { font-size: .89rem; max-width: 340px; margin-top: 14px; }
.foot-col h4 { font-size: .8rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: #fff; margin-bottom: 15px; }
.foot-col a { display: block; font-size: .89rem; text-decoration: none; color: rgba(255,255,255,.6); padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--blue2); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--s3); text-align: center; font-size: .82rem; }
.foot-bottom a { color: var(--blue2); text-decoration: none; }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT + TOAST
═══════════════════════════════════════ */
.wa-btn {
    position: fixed; bottom: calc(20px + var(--safe-bottom)); right: 20px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #12a856); color: #fff;
    display: grid; place-items: center; text-decoration: none;
    box-shadow: 0 10px 26px rgba(37,211,102,.42);
    transition: transform .25s;
}
.wa-btn:hover { transform: scale(1.09); }
.wa-btn::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: #25D366; animation: pulseRing 2.2s ease-out infinite; z-index: -1;
}
.toast {
    position: fixed; bottom: calc(88px + var(--safe-bottom)); left: 50%; transform: translate(-50%, 24px);
    background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 50px;
    font-size: .88rem; font-weight: 600; z-index: 1500; opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s; box-shadow: 0 14px 34px rgba(0,0,0,.3);
    max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ═══════════════════════════════════════
   AVISO EDITOR (solo visible para ti en local)
═══════════════════════════════════════ */
.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--blue); color: #fff;
    padding: 10px 18px; z-index: 3000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
