:root {
    --blue-950: #031a3a;
    --blue-900: #062a5f;
    --blue-800: #073f79;
    --blue-700: #0c4d91;
    --blue-600: #1765b4;
    --yellow-500: #ffde17;
    --yellow-600: #f4c400;
    --gold: #d99b00;
    --ink: #162033;
    --muted: #647086;
    --soft: #f3f6fb;
    --soft-2: #eaf0f8;
    --white: #ffffff;
    --border: #dce5f0;
    --success: #16a34a;
    --danger: #dc2626;
    --shadow: 0 24px 70px rgba(3, 26, 58, .16);
    --shadow-soft: 0 14px 38px rgba(3, 26, 58, .10);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; color: var(--blue-900); line-height: 1.08; }
h1 { font-size: clamp(2.35rem, 5.8vw, 5rem); letter-spacing: -0.065em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.35rem); letter-spacing: -0.05em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 2.05rem); letter-spacing: -0.035em; }
h4 { font-size: 1.03rem; letter-spacing: -0.015em; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.section-soft { background: linear-gradient(180deg, var(--soft), #fff); }
.center { text-align: center; }
.narrow { max-width: 840px; margin-inline: auto; }
.align-center { align-items: center; }
.reverse > *:first-child { order: 2; }

.skip-link {
    position: absolute; left: 16px; top: -120px; z-index: 9999;
    background: var(--blue-900); color: var(--white); padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { top: 14px; }

.topbar {
    background: linear-gradient(90deg, var(--blue-950), var(--blue-900));
    color: rgba(255,255,255,.88); font-size: .88rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; }
.topbar__message { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--yellow-500); box-shadow: 0 0 0 5px rgba(255,222,23,.16); }
.topbar__links { display: flex; align-items: center; gap: 18px; }
.topbar a { color: #fff; opacity: .92; }
.topbar a:hover { opacity: 1; color: var(--yellow-500); }

.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220,229,240,.9);
    transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 35px rgba(3,26,58,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 88px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 245px; }
.brand__logo { width: 66px; height: 58px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(3,26,58,.12)); }
.brand__text { display: grid; line-height: 1.08; }
.brand__text strong { font-size: 1.45rem; letter-spacing: .08em; color: var(--blue-900); }
.brand__text small { color: var(--muted); font-size: .72rem; max-width: 230px; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
    color: var(--blue-900); font-weight: 800; font-size: .94rem;
    padding: 10px 12px; border-radius: 999px; transition: .18s ease;
}
.nav-menu a:hover, .nav-menu a.is-active { background: rgba(7,63,121,.09); color: var(--blue-700); }
.nav-toggle {
    display: none; width: 46px; height: 46px; border: 1px solid var(--border);
    background: var(--white); border-radius: 14px; cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--blue-900); margin: 5px 0; border-radius: 99px; transition: .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 54px; padding: 0 23px; border-radius: 999px;
    border: 1px solid transparent; font-weight: 900; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--small { min-height: 42px; padding-inline: 18px !important; }
.btn--primary { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: var(--white) !important; box-shadow: 0 14px 34px rgba(7,63,121,.25); }
.btn--yellow { background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600)); color: var(--blue-950) !important; box-shadow: 0 14px 30px rgba(255,222,23,.25); }
.btn--light { background: var(--white); color: var(--blue-900) !important; box-shadow: var(--shadow-soft); }
.btn--ghost-light { color: #fff !important; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn--ghost-dark { color: var(--blue-900) !important; border-color: rgba(3,26,58,.2); background: rgba(255,255,255,.36); }

.eyebrow {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    margin-bottom: 14px; color: var(--blue-700); font-size: .78rem;
    font-weight: 950; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 99px; background: var(--yellow-500); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--yellow-500); }
.section-head { max-width: 860px; margin: 0 auto 42px; }
.section-head p { font-size: 1.08rem; margin-top: 16px; }

/* HERO SLIDER */
.hero-slider { position: relative; min-height: clamp(620px, 76vh, 820px); overflow: hidden; background: var(--blue-950); }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    display: grid; align-items: center; transition: opacity .7s ease, visibility .7s ease;
    isolation: isolate;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; filter: saturate(1.08) contrast(1.04); }
.hero-overlay {
    position: absolute; inset: 0; z-index: -2;
    background: linear-gradient(90deg, rgba(3,26,58,.92) 0%, rgba(6,42,95,.86) 38%, rgba(6,42,95,.35) 70%, rgba(3,26,58,.22) 100%);
}
.hero-slide::after {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55;
    background: radial-gradient(circle at 75% 36%, rgba(255,222,23,.18), transparent 19%), radial-gradient(circle at 18% 75%, rgba(255,255,255,.12), transparent 24%);
}
.hero-slide--blue {
    background:
        linear-gradient(90deg, rgba(3,26,58,.96), rgba(7,63,121,.88)),
        url('../img/hero-poster.svg') center/cover no-repeat;
}
.hero-slide--blue::before, .hero-slide--gold::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(115deg, rgba(3,26,58,.92) 0 47%, rgba(255,255,255,.08) 47% 48%, transparent 48%), radial-gradient(circle at 78% 45%, rgba(255,255,255,.14), transparent 18%);
}
.hero-slide--gold {
    background: linear-gradient(135deg, #fff6b8, #ffde17 40%, #f3c102 100%);
}
.hero-slide--gold .hero-content h1, .hero-slide--gold .hero-content p, .hero-slide--gold .hero-kicker { color: var(--blue-950); text-shadow: none; }
.hero-slide--gold .hero-kicker::before { background: var(--blue-900); }
.hero-content { padding: 84px 0 128px; max-width: 850px; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 10px; color: var(--yellow-500);
    font-weight: 950; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin-bottom: 18px;
}
.hero-kicker::before { content: ""; width: 40px; height: 3px; background: var(--yellow-500); border-radius: 99px; }
.hero-content h1 { color: #fff; max-width: 880px; text-shadow: 0 18px 45px rgba(0,0,0,.2); }
.hero-content p { color: rgba(255,255,255,.9); max-width: 680px; font-size: clamp(1.04rem, 2vw, 1.28rem); margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-controls {
    position: absolute; z-index: 20; left: 50%; bottom: 30px; transform: translateX(-50%);
    display: flex; align-items: center; gap: 12px; color: #fff;
}
.hero-arrow, .testimonial-controls button {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.12); color: #fff; font-size: 1.5rem; cursor: pointer; backdrop-filter: blur(8px);
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border: 0; border-radius: 99px; background: rgba(255,255,255,.42); cursor: pointer; transition: .2s ease; }
.hero-dot.is-active { width: 28px; background: var(--yellow-500); }

.quick-stats { position: relative; z-index: 10; margin-top: -48px; }
.quick-stats__grid {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow);
    display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.quick-stats article { padding: 28px 24px; border-right: 1px solid var(--border); }
.quick-stats article:last-child { border-right: 0; }
.quick-stats strong { display: block; color: var(--blue-900); font-size: clamp(1.65rem, 3vw, 2.25rem); line-height: 1; letter-spacing: -.05em; }
.quick-stats span { display: block; color: var(--muted); font-weight: 800; margin-top: 8px; }

/* TABS */
.tabs { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: #fff; border: 1px solid var(--border); }
.tabs__nav { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--blue-900); }
.tab-btn {
    min-height: 78px; border: 0; background: var(--blue-900); color: #fff; cursor: pointer;
    font-weight: 950; text-transform: uppercase; letter-spacing: -.015em; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 12px; transition: .2s ease;
}
.tab-btn span { font-size: 1.65rem; line-height: 1; }
.tab-btn.is-active { background: #fff; color: var(--blue-900); }
.tab-btn:hover:not(.is-active) { background: var(--blue-800); }
.tab-panel { display: none; padding: clamp(24px, 4vw, 48px); }
.tab-panel.is-active { display: block; animation: fadeUp .35s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.solution-card { display: grid; grid-template-columns: .95fr 1fr .95fr; gap: 36px; align-items: center; }
.solution-card--app { grid-template-columns: .85fr 1.4fr; }
.solution-visual { border-radius: 24px; min-height: 270px; display: grid; place-items: center; background: linear-gradient(135deg, var(--soft), #fff); border: 1px solid var(--border); overflow: hidden; }
.solution-visual img { width: min(82%, 360px); }
.solution-visual--feria { background: radial-gradient(circle at 50% 30%, rgba(255,222,23,.22), transparent 30%), linear-gradient(135deg, #f8fbff, #eef5ff); }
.solution-visual--docu { background: radial-gradient(circle at 50% 30%, rgba(22,163,74,.18), transparent 30%), linear-gradient(135deg, #f8fbff, #eef5ff); }
.solution-visual--app { background: radial-gradient(circle at 50% 35%, rgba(255,222,23,.24), transparent 35%), linear-gradient(135deg, #f8fbff, #eef5ff); }
.solution-copy p { font-size: 1rem; }
.solution-copy--soft, .credential-box {
    background: var(--soft); border: 1px solid var(--border); padding: 28px; border-radius: 22px;
}
.solution-copy.wide { max-width: 760px; }
.credential-box h4 { font-size: 1.25rem; margin-bottom: 10px; }
.mini-docs { display: flex; gap: 16px; margin-top: 18px; }
.mini-docs span { width: 64px; height: 86px; border-radius: 10px; background: linear-gradient(180deg, #fff 0 66%, #dff3e6 66%); border: 1px solid #cbe9d6; position: relative; box-shadow: var(--shadow-soft); }
.mini-docs span::before { content: "QR"; position: absolute; top: 16px; left: 14px; width: 36px; height: 36px; display: grid; place-items: center; font-size: .65rem; font-weight: 900; color: var(--blue-900); border: 2px dashed var(--blue-900); }
.consulting-panel { padding: 10px 0; }
.consulting-panel .narrow h3 { margin-bottom: 12px; }
.consulting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.consulting-grid article { padding: 26px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.consulting-grid h4 { color: var(--blue-900); margin-bottom: 8px; }

.check-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-900); color: var(--yellow-500); display: grid; place-items: center; font-size: .82rem; font-weight: 950; }
.check-list.compact { margin: 14px 0 22px; gap: 8px; }

.experience-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.experience-flow::before { content: ""; position: absolute; top: 50%; left: 12%; right: 12%; border-top: 2px dashed rgba(6,42,95,.35); transform: translateY(-50%); }
.experience-flow article { position: relative; z-index: 1; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 25px; background: linear-gradient(rgba(6,42,95,.78), rgba(6,42,95,.78)), url('../img/hero-poster.svg') center/cover; color: #fff; border: 12px solid #fff; box-shadow: var(--shadow-soft); }
.experience-flow article span { position: absolute; right: 8px; top: 8px; width: 48px; height: 48px; border-radius: 50%; background: var(--yellow-500); color: var(--blue-950); display: grid; place-items: center; font-weight: 950; font-size: 1.25rem; }
.experience-flow strong { color: #fff; font-size: clamp(1rem, 2vw, 1.35rem); line-height: 1.15; }

.course-banner { position: relative; min-height: 620px; overflow: hidden; background: var(--blue-900); color: #fff; display: grid; align-items: center; }
.course-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, var(--blue-900) 0 48%, rgba(6,42,95,.9) 48% 49%, rgba(6,42,95,.14) 49% 100%); z-index: 1; }
.course-banner__media { position: absolute; inset: 0; background: url('../img/cursos-online.svg') right center/auto 100% no-repeat, linear-gradient(90deg, var(--blue-900), var(--blue-700)); opacity: .98; }
.course-banner__content { position: relative; z-index: 2; max-width: 560px; margin-left: max(calc((100vw - var(--container)) / 2), 20px); }
.course-banner h2, .course-banner p { color: #fff; }
.course-banner p { font-size: clamp(1.05rem, 2vw, 1.32rem); margin: 22px 0 30px; }

.card-grid { display: grid; gap: 22px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 30px; box-shadow: var(--shadow-soft); overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--blue-900), var(--yellow-500)); }
.service-card .icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--soft); font-size: 1.55rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card a { color: var(--blue-700); font-weight: 950; }

.testimonial-slider { position: relative; overflow: hidden; background: linear-gradient(rgba(6,42,95,.86), rgba(6,42,95,.91)), url('../img/testimonios-bg.svg') center/cover; padding: 95px 0; text-align: center; color: #fff; }
.quote-mark { color: rgba(255,255,255,.7); font-size: 8rem; height: 72px; line-height: .6; font-weight: 950; }
.testimonial { display: none; max-width: 1120px; margin: 0 auto; }
.testimonial.is-active { display: block; animation: fadeUp .35s ease both; }
.testimonial p { color: #fff; font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 650; }
.testimonial strong { color: rgba(255,255,255,.92); display: block; margin-top: 24px; }
.testimonial-controls { display: flex; gap: 12px; justify-content: center; margin-top: 38px; }
.testimonial-controls button { border-color: rgba(255,222,23,.8); font-size: 1.4rem; }

/* INTERNAL PAGES */
.page-hero { position: relative; overflow: hidden; padding: 90px 0; background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 55%, var(--blue-700)); color: #fff; }
.page-hero::after { content: ""; position: absolute; right: -90px; top: -160px; width: 470px; height: 470px; border-radius: 50%; background: rgba(255,222,23,.14); }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: center; }
.page-hero h1, .page-hero p { color: #fff; }
.page-hero p { font-size: 1.15rem; max-width: 720px; margin: 22px 0 30px; }
.page-hero__card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(14px); border-radius: 28px; padding: 34px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.page-hero__card img { max-height: 180px; margin: 0 auto 16px; object-fit: contain; }
.page-hero__card h3 { color: #fff; }
.page-hero__card p { color: rgba(255,255,255,.86); margin-bottom: 0; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.illustration-box, .visual-panel { background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--shadow); padding: 38px; }
.illustration-box img { max-height: 340px; margin: auto; }
.visual-panel { background: linear-gradient(135deg, #fff, var(--soft)); }
.visual-panel--dark { background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: #fff; }
.visual-panel--dark h3, .visual-panel--dark p { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-grid article { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: var(--shadow-soft); }
.process-grid span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow-500); color: var(--blue-950); font-weight: 950; margin-bottom: 18px; }
.process-grid h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 28px; }
.contact-cards article { background: var(--soft); border: 1px solid var(--border); padding: 20px; border-radius: 18px; }
.contact-cards strong { display: block; color: var(--blue-900); margin-bottom: 4px; }
.contact-cards a { color: var(--blue-700); font-weight: 850; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--shadow); padding: clamp(24px, 4vw, 38px); }
.contact-form label { display: grid; gap: 8px; color: var(--blue-900); font-weight: 850; margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--border); border-radius: 15px; padding: 14px 15px; color: var(--ink); background: #fff; outline: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(23,101,180,.12); }
.validate-form h3 { margin-bottom: 18px; }
.form-note { font-size: .88rem; margin-top: 12px; }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 18px; font-weight: 800; }
.alert--ok { background: rgba(22,163,74,.1); color: var(--success); }
.alert--error { background: rgba(220,38,38,.1); color: var(--danger); }

.cta-strip { background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 55%, var(--blue-700)); padding: 70px 0; color: #fff; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-strip h2, .cta-strip p { color: #fff; }
.cta-strip p { max-width: 700px; margin-top: 14px; }
.site-footer { background: var(--blue-950); color: rgba(255,255,255,.78); padding: 66px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 36px; }
.footer-logo { width: 76px; margin-bottom: 16px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.25)); }
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 14px; }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.site-footer a:hover { color: var(--yellow-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: .9rem; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 1001; background: #25d366; color: #fff; border-radius: 999px; padding: 13px 18px; font-weight: 950; box-shadow: 0 18px 35px rgba(37,211,102,.32); }
.whatsapp-float::before { content: "✆"; margin-right: 8px; }

@media (max-width: 1100px) {
    .brand { min-width: auto; }
    .brand__text small { display: none; }
    .nav-menu a { padding-inline: 9px; font-size: .88rem; }
    .solution-card { grid-template-columns: 1fr; }
    .solution-card--app { grid-template-columns: 1fr; }
    .consulting-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .container { width: min(100% - 30px, var(--container)); }
    .topbar__inner { justify-content: center; text-align: center; }
    .topbar__links { display: none; }
    .nav { min-height: 76px; }
    .brand__logo { width: 58px; height: 52px; }
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; left: 15px; right: 15px; top: 120px; z-index: 1002;
        display: grid; gap: 8px; background: #fff; border: 1px solid var(--border);
        border-radius: 24px; padding: 18px; box-shadow: var(--shadow);
        opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
    }
    .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-menu a { padding: 13px 14px; border-radius: 14px; }
    .nav-cta { width: 100%; }
    .hero-slider { min-height: 680px; }
    .hero-content { padding: 72px 0 120px; }
    .hero-overlay { background: linear-gradient(180deg, rgba(3,26,58,.92), rgba(6,42,95,.76)); }
    .quick-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .quick-stats article:nth-child(2) { border-right: 0; }
    .quick-stats article:nth-child(1), .quick-stats article:nth-child(2) { border-bottom: 1px solid var(--border); }
    .tabs__nav { grid-template-columns: 1fr; }
    .tab-btn { min-height: 62px; justify-content: flex-start; padding-inline: 22px; }
    .experience-flow { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
    .experience-flow::before { display: none; }
    .course-banner { min-height: auto; padding: 84px 0; }
    .course-banner::before { background: linear-gradient(rgba(6,42,95,.92), rgba(6,42,95,.92)); }
    .course-banner__media { opacity: .3; background-position: center; }
    .course-banner__content { margin: 0 auto; width: min(100% - 30px, var(--container)); }
    .card-grid--3, .process-grid, .feature-grid, .page-hero__grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .reverse > *:first-child { order: initial; }
    .cta-strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    body { line-height: 1.55; }
    .section-pad { padding: 68px 0; }
    .brand__text strong { font-size: 1.12rem; }
    .brand__logo { width: 50px; height: 46px; }
    .hero-slider { min-height: 650px; }
    .hero-content h1 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
    .hero-actions .btn { width: 100%; }
    .hero-controls { width: 100%; justify-content: center; bottom: 20px; }
    .quick-stats { margin-top: 0; }
    .quick-stats__grid { grid-template-columns: 1fr; border-radius: 0; width: calc(100% + 30px); margin-left: -15px; }
    .quick-stats article { border-right: 0; border-bottom: 1px solid var(--border); }
    .tabs { border-radius: 20px; }
    .tab-panel { padding: 20px; }
    .solution-visual { min-height: 220px; }
    .consulting-grid { grid-template-columns: 1fr; }
    .experience-flow { grid-template-columns: 1fr; max-width: 290px; }
    .course-banner p { font-size: 1rem; }
    .testimonial-slider { padding: 72px 0; }
    .quote-mark { font-size: 6rem; height: 56px; }
    .page-hero { padding: 70px 0; }
    .page-hero__card { padding: 24px; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { left: 16px; right: 16px; text-align: center; justify-content: center; display: flex; }
}

/* ======================================================
   CIDEC V3 - Inicio creativo con video y experiencia móvil
   ====================================================== */
.home-v3 .hero-slider,
.home-v3 .quick-stats,
.home-v3 .solutions,
.home-v3 .courses-band,
.home-v3 .experience,
.home-v3 .testimonials {
    display: none !important;
}

.creative-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    background: var(--blue-950);
}
.creative-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease, visibility .7s ease;
    padding: 96px 0 120px;
}
.creative-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.creative-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    z-index: -3;
}
.creative-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 82% 16%, rgba(255,222,23,.22), transparent 24%),
        linear-gradient(90deg, rgba(3,26,58,.94) 0%, rgba(3,26,58,.78) 45%, rgba(3,26,58,.36) 100%);
}
.creative-slide::before,
.creative-slide::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}
.creative-slide::before {
    width: 520px;
    height: 520px;
    right: -150px;
    top: -170px;
    border: 1px solid rgba(255,255,255,.20);
    box-shadow: inset 0 0 0 54px rgba(255,255,255,.04);
}
.creative-slide::after {
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: 30px;
    background: rgba(255,222,23,.13);
    filter: blur(2px);
}
.creative-slide--campus {
    background:
        radial-gradient(circle at 72% 18%, rgba(255,222,23,.24), transparent 26%),
        radial-gradient(circle at 16% 80%, rgba(255,255,255,.12), transparent 22%),
        linear-gradient(135deg, #031a3a 0%, #063b78 56%, #082f66 100%);
}
.creative-slide--campus::before {
    right: 8%;
    top: 16%;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
}
.creative-slide--docu {
    background:
        linear-gradient(135deg, rgba(3,26,58,.96), rgba(6,59,120,.88)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 1px, transparent 1px 28px);
}
.creative-slide--docu::before {
    background: conic-gradient(from 90deg, rgba(255,222,23,.35), rgba(255,255,255,.05), rgba(255,222,23,.35));
    opacity: .55;
}
.creative-hero__inner {
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 420px;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
}
.creative-hero__inner--solo {
    grid-template-columns: minmax(0, 850px);
    justify-content: start;
}
.hero-copy { max-width: 780px; }
.hero-copy--wide { max-width: 920px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
    backdrop-filter: blur(14px);
    border-radius: 99px;
    padding: 9px 14px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-badge span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow-500);
    box-shadow: 0 0 0 6px rgba(255,222,23,.18);
}
.hero-copy h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5.8vw, 5.9rem);
    line-height: .96;
    letter-spacing: -.075em;
    text-wrap: balance;
    text-shadow: 0 22px 70px rgba(0,0,0,.32);
}
.hero-copy p {
    color: rgba(255,255,255,.90);
    max-width: 680px;
    font-size: clamp(1.05rem, 1.9vw, 1.32rem);
    margin-top: 26px;
}
.btn--glass {
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.26);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.hero-console {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 34px;
    padding: 24px;
    box-shadow: 0 34px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
    transform: translateY(8px);
}
.hero-console::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(255,222,23,.5), rgba(255,255,255,.04), rgba(6,59,120,.45));
    z-index: -1;
    opacity: .85;
}
.console-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.console-top img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: var(--shadow-soft);
}
.console-top strong { display: block; color: var(--blue-900); font-size: 1.05rem; }
.console-top span { display: block; color: var(--muted); font-size: .88rem; font-weight: 800; }
.console-screen {
    background:
        radial-gradient(circle at 85% 20%, rgba(255,222,23,.22), transparent 28%),
        linear-gradient(135deg, #031a3a, #063b78);
    border-radius: 26px;
    padding: 22px;
    min-height: 260px;
    display: grid;
    align-content: center;
    gap: 14px;
    color: #fff;
    overflow: hidden;
}
.screen-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
}
.screen-row span { color: rgba(255,255,255,.82); font-weight: 700; }
.screen-row strong { color: var(--yellow-500); }
.screen-progress {
    height: 10px;
    background: rgba(255,255,255,.12);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 4px;
}
.screen-progress i {
    display: block;
    width: 76%;
    height: 100%;
    background: linear-gradient(90deg, var(--yellow-500), #fff1a0);
    border-radius: inherit;
    animation: cidPulse 3.4s ease-in-out infinite;
}
@keyframes cidPulse { 50% { width: 92%; } }
.console-mini-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 14px;
}
.console-mini-grid span {
    display: grid;
    place-items: center;
    min-height: 52px;
    color: var(--blue-900);
    background: rgba(255,222,23,.20);
    border: 1px solid rgba(255,222,23,.45);
    border-radius: 16px;
    font-weight: 950;
    font-size: .82rem;
}
.hero-controls--v3 {
    bottom: 34px;
}

.trust-ribbon {
    position: relative;
    z-index: 12;
    margin-top: -58px;
}
.trust-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(3,26,58,.16);
    overflow: hidden;
    border: 1px solid rgba(220,229,240,.85);
}
.trust-ribbon article {
    padding: 26px 24px;
    border-right: 1px solid var(--border);
}
.trust-ribbon article:last-child { border-right: 0; }
.trust-ribbon strong {
    display: block;
    color: var(--blue-900);
    font-size: clamp(1.6rem, 3vw, 2.28rem);
    line-height: 1;
    letter-spacing: -.055em;
}
.trust-ribbon span { color: var(--muted); font-weight: 850; display: block; margin-top: 8px; }

.ecosystem-section {
    background:
        radial-gradient(circle at 8% 15%, rgba(255,222,23,.16), transparent 24%),
        linear-gradient(180deg, #fff, #f8fbff 100%);
}
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 18px;
}
.ecosystem-card {
    position: relative;
    min-height: 330px;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ecosystem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ecosystem-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,222,23,.18);
}
.ecosystem-card--featured {
    background:
        linear-gradient(135deg, rgba(3,26,58,.95), rgba(6,59,120,.94)),
        radial-gradient(circle at 80% 20%, rgba(255,222,23,.25), transparent 25%);
    color: #fff;
}
.ecosystem-card--featured h3,
.ecosystem-card--featured p { color: #fff; }
.ecosystem-card--featured p { color: rgba(255,255,255,.84); }
.eco-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--yellow-500);
    color: var(--blue-950);
    font-weight: 950;
    margin-bottom: 22px;
}
.ecosystem-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.ecosystem-card a {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: var(--blue-900);
    font-weight: 950;
    border-bottom: 2px solid var(--yellow-500);
}
.ecosystem-card--featured a { color: var(--yellow-500); }

.learning-lab__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
    gap: clamp(34px, 7vw, 92px);
    align-items: center;
}
.learning-copy .btn { margin-top: 12px; }
.learning-visual { position: relative; min-height: 520px; }
.browser-mockup {
    position: absolute;
    inset: 34px 0 0 46px;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(3,26,58,.18);
    border: 1px solid var(--border);
    overflow: hidden;
    transform: rotate(-2deg);
}
.browser-bar {
    height: 60px;
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
}
.browser-bar span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--yellow-500);
    opacity: .9;
}
.browser-content {
    padding: 32px;
    background:
        radial-gradient(circle at 85% 10%, rgba(255,222,23,.22), transparent 25%),
        linear-gradient(180deg, #fff, #f3f7fc);
    min-height: 400px;
}
.teacher-card {
    padding: 18px;
    border-radius: 22px;
    background: var(--blue-900);
    color: #fff;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}
.teacher-card .avatar {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 35%, #fff 0 18%, transparent 19%),
        radial-gradient(circle at 50% 80%, #fff 0 32%, transparent 33%),
        var(--yellow-500);
}
.teacher-card strong { color: #fff; }
.teacher-card small { color: rgba(255,255,255,.72); font-weight: 700; }
.class-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.class-grid span {
    min-height: 88px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(6,59,120,.92), rgba(8,81,156,.78)),
        radial-gradient(circle at 70% 25%, rgba(255,222,23,.24), transparent 28%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.lesson-line {
    height: 14px;
    border-radius: 99px;
    background: #dce5f0;
    overflow: hidden;
    margin-bottom: 14px;
}
.lesson-line i { display: block; height: 100%; background: var(--yellow-500); border-radius: inherit; }
.lesson-line--small { width: 72%; }
.floating-note {
    position: absolute;
    z-index: 3;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    color: var(--blue-900);
    font-weight: 950;
}
.floating-note--one { top: 24px; left: 0; }
.floating-note--two { right: 10px; bottom: 50px; background: var(--yellow-500); border-color: transparent; }

.services-showcase {
    background:
        linear-gradient(180deg, #fff, #fff 60%, #f3f6fb 60%),
        radial-gradient(circle at 50% 0%, rgba(255,222,23,.16), transparent 30%);
}
.service-story {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}
.service-story article {
    min-height: 280px;
    padding: 30px;
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(3,26,58,.97), rgba(6,59,120,.90)),
        radial-gradient(circle at 78% 20%, rgba(255,222,23,.25), transparent 30%);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}
.service-story article:nth-child(2) { transform: translateY(28px); }
.service-story article::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 34px solid rgba(255,255,255,.08);
}
.service-story span {
    display: inline-flex;
    color: var(--blue-950);
    background: var(--yellow-500);
    border-radius: 99px;
    padding: 8px 12px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.service-story h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.service-story p { color: rgba(255,255,255,.82); }

.experience-line { position: relative; overflow: hidden; }
.experience-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    position: relative;
}
.experience-steps::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 48px;
    border-top: 2px dashed rgba(6,59,120,.30);
}
.experience-steps article {
    position: relative;
    z-index: 2;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.experience-steps span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow-500);
    color: var(--blue-950);
    font-weight: 950;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 10px #fff;
}
.experience-steps h3 { font-size: 1.16rem; margin-bottom: 10px; }

.testimonial-v3 {
    background:
        linear-gradient(135deg, rgba(3,26,58,.96), rgba(6,59,120,.88)),
        url('../img/testimonios-bg.svg') center/cover;
    color: #fff;
}
.testimonial-v3 .section-head h2,
.testimonial-v3 .section-head p { color: #fff; }
.testimonial-v3 .eyebrow { color: var(--yellow-500); }
.testimonial-stage {
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: center;
}
.testimonial-card {
    display: none;
    max-width: 980px;
    text-align: center;
    padding: clamp(26px, 5vw, 54px);
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
}
.testimonial-card.is-active { display: block; animation: fadeUp .35s ease both; }
.testimonial-card p {
    color: rgba(255,255,255,.92);
    font-size: clamp(1.12rem, 2vw, 1.55rem);
    line-height: 1.55;
    margin-bottom: 22px;
}
.testimonial-card strong { color: var(--yellow-500); }
.testimonial-controls--v3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    display: flex;
    gap: 12px;
}
.final-cta { background: #fff; }
.final-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: clamp(32px, 5vw, 58px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,222,23,.28), transparent 28%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    box-shadow: var(--shadow);
    color: #fff;
}
.final-cta h2 { color: #fff; max-width: 760px; }
.final-cta p { color: rgba(255,255,255,.80); max-width: 720px; margin-top: 12px; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

@media (max-width: 1100px) {
    .creative-hero__inner { grid-template-columns: 1fr; padding-top: 40px; }
    .hero-console { max-width: 520px; }
    .ecosystem-grid { grid-template-columns: repeat(2,1fr); }
    .learning-lab__grid { grid-template-columns: 1fr; }
    .learning-visual { min-height: 560px; }
    .service-story { grid-template-columns: 1fr; }
    .service-story article:nth-child(2) { transform: none; }
    .experience-steps { grid-template-columns: repeat(2,1fr); }
    .experience-steps::before { display: none; }
}

@media (max-width: 760px) {
    .creative-hero { min-height: auto; }
    .creative-slide { position: relative; min-height: 760px; padding: 76px 0 110px; }
    .creative-slide:not(.is-active) { display: none; }
    .creative-hero__inner { min-height: auto; gap: 26px; }
    .creative-overlay { background: linear-gradient(180deg, rgba(3,26,58,.92), rgba(3,26,58,.76)); }
    .hero-badge { font-size: .68rem; align-items: flex-start; border-radius: 18px; line-height: 1.35; }
    .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
    .hero-copy p { font-size: 1rem; margin-top: 18px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-console { border-radius: 26px; padding: 18px; }
    .console-screen { min-height: 220px; padding: 16px; }
    .console-mini-grid { grid-template-columns: 1fr; }
    .hero-controls--v3 { bottom: 22px; }
    .trust-ribbon { margin-top: 0; padding-top: 18px; background: #fff; }
    .trust-ribbon__grid { grid-template-columns: 1fr 1fr; border-radius: 24px; }
    .trust-ribbon article { padding: 20px 16px; }
    .trust-ribbon article:nth-child(2) { border-right: 0; }
    .ecosystem-grid { grid-template-columns: 1fr; }
    .ecosystem-card { min-height: 260px; padding: 24px; }
    .learning-visual { min-height: 470px; }
    .browser-mockup { inset: 36px 0 0 0; transform: none; border-radius: 26px; }
    .browser-content { padding: 22px; min-height: 350px; }
    .class-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .class-grid span { min-height: 70px; }
    .floating-note { font-size: .85rem; padding: 12px 14px; }
    .floating-note--one { left: 12px; top: 0; }
    .floating-note--two { right: 6px; bottom: 24px; }
    .service-story article { min-height: auto; padding: 24px; }
    .experience-steps { grid-template-columns: 1fr; }
    .final-cta__box { display: block; border-radius: 28px; }
    .final-cta__actions { justify-content: stretch; margin-top: 22px; }
    .final-cta__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 460px) {
    .creative-slide { min-height: 820px; }
    .trust-ribbon__grid { grid-template-columns: 1fr; }
    .trust-ribbon article { border-right: 0; border-bottom: 1px solid var(--border); }
    .trust-ribbon article:last-child { border-bottom: 0; }
    .console-top img { width: 56px; height: 56px; }
    .screen-row { display: block; }
    .screen-row strong { display: block; margin-top: 4px; }
}

/* =======================================================
   V5 - Slider con videos reales + bloque web institucional
   ======================================================= */
.creative-overlay--premium {
    background:
        radial-gradient(circle at 84% 14%, rgba(255,222,23,.26), transparent 26%),
        radial-gradient(circle at 14% 82%, rgba(255,255,255,.16), transparent 22%),
        linear-gradient(90deg, rgba(3,26,58,.95) 0%, rgba(3,26,58,.82) 44%, rgba(3,26,58,.38) 100%);
}
.creative-overlay--tech {
    background:
        radial-gradient(circle at 80% 20%, rgba(255,222,23,.20), transparent 24%),
        linear-gradient(90deg, rgba(3,26,58,.96) 0%, rgba(4,37,82,.88) 48%, rgba(3,26,58,.42) 100%);
}
.hero-console--premium {
    border: 1px solid rgba(255,255,255,.32);
    box-shadow: 0 30px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.14);
}
.web-institucional {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(255,222,23,.12), transparent 25%),
        radial-gradient(circle at 92% 22%, rgba(6,59,120,.10), transparent 28%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 58%, #f3f7fc 100%);
}
.web-institucional::before {
    content: "";
    position: absolute;
    right: -160px;
    top: 90px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(6,59,120,.10);
    box-shadow: inset 0 0 0 58px rgba(255,222,23,.08);
    pointer-events: none;
}
.web-institucional__grid { position: relative; z-index: 1; }
.web-institucional__copy h2 {
    max-width: 720px;
    letter-spacing: -.055em;
}
.web-institucional__copy p {
    max-width: 720px;
    font-size: 1.08rem;
}
.check-list--premium li {
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(220,229,240,.78);
    border-radius: 16px;
    padding: 12px 14px 12px 48px;
    box-shadow: 0 12px 28px rgba(3,26,58,.045);
}
.check-list--premium li::before {
    left: 14px;
    top: 11px;
}
.web-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.web-dashboard {
    position: relative;
    min-height: 560px;
    perspective: 1000px;
}
.web-dashboard__card {
    position: absolute;
    inset: 20px 0 24px 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(220,229,240,.92);
    box-shadow: 0 35px 90px rgba(3,26,58,.20);
    overflow: hidden;
    transform: rotate(-1.8deg) rotateY(-5deg);
    backdrop-filter: blur(12px);
}
.web-dashboard__top {
    height: 68px;
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    color: #fff;
}
.web-dashboard__top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--yellow-500);
}
.web-dashboard__top strong {
    margin-left: auto;
    font-size: .95rem;
    letter-spacing: .02em;
}
.web-dashboard__hero {
    margin: 28px;
    min-height: 142px;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,222,23,.30), transparent 22%),
        linear-gradient(135deg, var(--blue-900), var(--blue-700));
    box-shadow: 0 20px 45px rgba(7,63,121,.22);
}
.web-dashboard__hero small {
    display: block;
    color: rgba(255,255,255,.78);
    font-weight: 800;
    margin-bottom: 7px;
}
.web-dashboard__hero strong {
    display: block;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.1;
}
.web-dashboard__hero em {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: var(--yellow-500);
    color: var(--blue-950);
    font-style: normal;
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(255,222,23,.25);
}
.web-dashboard__modules {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    padding: 0 28px 24px;
}
.web-dashboard__modules article {
    min-height: 104px;
    border-radius: 22px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,248,253,.96));
    border: 1px solid rgba(220,229,240,.9);
    box-shadow: 0 12px 28px rgba(3,26,58,.06);
}
.web-dashboard__modules b {
    display: block;
    color: var(--blue-900);
    font-size: 1.12rem;
}
.web-dashboard__modules small {
    color: var(--muted);
    font-weight: 800;
}
.web-dashboard__lines {
    padding: 0 28px 32px;
}
.web-dashboard__lines i {
    display: block;
    height: 13px;
    border-radius: 999px;
    background: #dce5f0;
    margin-top: 12px;
    overflow: hidden;
}
.web-dashboard__lines i::before {
    content: "";
    display: block;
    height: 100%;
    width: 72%;
    border-radius: inherit;
    background: var(--yellow-500);
}
.web-dashboard__lines i:nth-child(2)::before { width: 48%; }
.web-dashboard__lines i:nth-child(3)::before { width: 86%; }
.security-chip {
    position: absolute;
    z-index: 3;
    padding: 15px 18px;
    border-radius: 18px;
    background: #fff;
    color: var(--blue-900);
    font-weight: 950;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(220,229,240,.9);
}
.security-chip--one { left: 0; top: 18px; }
.security-chip--two { right: 12px; top: 142px; background: var(--yellow-500); border-color: transparent; }
.security-chip--three { right: 0; bottom: 58px; }

@media (max-width: 1100px) {
    .web-dashboard { min-height: 620px; }
    .web-dashboard__card { left: 0; right: 0; transform: none; }
}
@media (max-width: 760px) {
    .web-actions .btn { width: 100%; justify-content: center; }
    .web-dashboard { min-height: 560px; }
    .web-dashboard__card { inset: 40px 0 34px 0; border-radius: 26px; }
    .web-dashboard__top { height: 58px; padding: 0 18px; }
    .web-dashboard__top strong { font-size: .78rem; }
    .web-dashboard__hero { margin: 18px; padding: 20px; border-radius: 22px; min-height: 126px; }
    .web-dashboard__hero em { width: 58px; height: 58px; border-radius: 18px; }
    .web-dashboard__modules { gap: 10px; padding: 0 18px 18px; }
    .web-dashboard__modules article { min-height: 90px; padding: 14px; border-radius: 18px; }
    .web-dashboard__lines { padding: 0 18px 24px; }
    .security-chip { font-size: .82rem; padding: 11px 13px; border-radius: 15px; }
    .security-chip--one { left: 12px; top: 0; }
    .security-chip--two { right: 8px; top: 116px; }
    .security-chip--three { right: 4px; bottom: 16px; }
}
@media (max-width: 460px) {
    .web-dashboard { min-height: 590px; }
    .web-dashboard__hero { display: grid; gap: 14px; }
    .web-dashboard__modules { grid-template-columns: 1fr; }
    .security-chip--three { left: 10px; right: auto; }
}

/* =======================================================
   V6 - Menú, validación en servicios y virtualización premium
   ======================================================= */
.nav-menu a { white-space: nowrap; }
.nav-cta { box-shadow: 0 12px 28px rgba(7,63,121,.20); }
@media (max-width: 1180px) {
    .brand { min-width: 190px; }
    .brand__logo { width: 58px; height: 52px; }
    .brand__text strong { font-size: 1.25rem; }
    .brand__text small { display: none; }
    .nav-menu a { font-size: .84rem; padding-inline: 8px; }
    .btn--small { min-height: 39px; padding-inline: 14px !important; }
}

.validation-service {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 14%, rgba(255,222,23,.12), transparent 22%),
        radial-gradient(circle at 92% 62%, rgba(6,59,120,.11), transparent 25%),
        #fff;
}
.validation-panel {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}
.validation-card {
    width: min(100%, 520px);
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(220,229,240,.9);
    box-shadow: 0 34px 90px rgba(3,26,58,.16);
    transform: rotate(1.2deg);
}
.validation-card__top {
    height: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    color: #fff;
}
.validation-card__top span { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow-500); }
.validation-card__top strong { margin-left: auto; letter-spacing: .08em; font-size: .82rem; }
.validation-card__body {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 22px;
    align-items: center;
    padding: 34px;
}
.validation-card__body small { display: block; color: var(--muted); font-weight: 900; margin-bottom: 6px; }
.validation-card__body strong { display: block; color: var(--blue-900); font-size: 1.55rem; line-height: 1.1; }
.validation-card__body p { margin-top: 10px; font-size: .96rem; }
.qr-mock {
    width: 130px;
    height: 130px;
    border-radius: 24px;
    background:
        linear-gradient(90deg, var(--blue-900) 12px, transparent 12px) 16px 16px/42px 42px,
        linear-gradient(var(--blue-900) 12px, transparent 12px) 16px 16px/42px 42px,
        linear-gradient(90deg, var(--yellow-500) 10px, transparent 10px) 8px 8px/32px 32px,
        #f4f8fd;
    border: 10px solid #fff;
    box-shadow: inset 0 0 0 1px rgba(6,59,120,.12), 0 16px 30px rgba(3,26,58,.10);
}
.verify-lines { padding: 0 34px 34px; }
.verify-lines i { display: block; height: 12px; border-radius: 999px; background: #dce5f0; margin-top: 12px; overflow: hidden; }
.verify-lines i::before { content: ""; display: block; height: 100%; border-radius: inherit; background: var(--yellow-500); }
.verify-lines i:nth-child(1)::before { width: 86%; }
.verify-lines i:nth-child(2)::before { width: 58%; }
.verify-lines i:nth-child(3)::before { width: 72%; }
.validation-chip {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 14px 18px;
    background: #fff;
    color: var(--blue-900);
    font-weight: 950;
    border: 1px solid rgba(220,229,240,.9);
    box-shadow: var(--shadow-soft);
}
.validation-chip--one { left: 4%; top: 72px; }
.validation-chip--two { right: 4%; bottom: 94px; background: var(--yellow-500); border-color: transparent; }

.virtual-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 10%, rgba(255,222,23,.24), transparent 27%),
        radial-gradient(circle at 14% 86%, rgba(255,255,255,.10), transparent 23%),
        linear-gradient(135deg, var(--blue-950), var(--blue-900) 58%, var(--blue-700));
    color: #fff;
    padding: clamp(70px, 9vw, 118px) 0;
}
.virtual-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 0 0 72px rgba(255,255,255,.04);
}
.virtual-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(420px, .82fr);
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
}
.virtual-hero__copy h1 { color: #fff; max-width: 800px; }
.virtual-hero__copy p { color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 2vw, 1.22rem); max-width: 740px; margin-top: 20px; }
.virtual-hero__visual { position: relative; min-height: 520px; }
.campus-window {
    position: absolute;
    inset: 24px 0 20px 16px;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.40);
    box-shadow: 0 34px 100px rgba(0,0,0,.26);
    transform: rotate(-1.5deg) rotateY(-4deg);
}
.campus-window__top {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    background: linear-gradient(90deg, var(--blue-950), var(--blue-800));
    color: #fff;
}
.campus-window__top span { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow-500); }
.campus-window__top strong { margin-left: auto; font-size: .85rem; letter-spacing: .04em; }
.campus-window__content { padding: 28px; }
.campus-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 26px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}
.campus-profile em {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow-500);
    color: var(--blue-950);
    font-style: normal;
    font-weight: 950;
    font-size: 1.65rem;
}
.campus-profile strong { color: #fff; display: block; font-size: 1.25rem; }
.campus-profile small { color: rgba(255,255,255,.76); font-weight: 850; }
.campus-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
.campus-grid span { min-height: 110px; border-radius: 22px; background: linear-gradient(135deg, #edf4fb, #dbe8f5); border: 1px solid #dce5f0; }
.campus-progress { margin-top: 24px; }
.campus-progress i { display: block; height: 12px; border-radius: 999px; background: #dce5f0; margin-top: 12px; overflow: hidden; }
.campus-progress i::before { content: ""; display: block; height: 100%; width: 78%; border-radius: inherit; background: var(--yellow-500); }
.campus-progress i:nth-child(2)::before { width: 46%; }
.campus-badge {
    position: absolute;
    z-index: 3;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 950;
    background: #fff;
    color: var(--blue-900);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
}
.campus-badge--one { top: 0; left: 0; }
.campus-badge--two { right: 0; top: 138px; background: var(--yellow-500); color: var(--blue-950); }
.campus-badge--three { right: 22px; bottom: 32px; }

.audience-section { background: #fff; }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.audience-card {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 32px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(220,229,240,.95);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.audience-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -96px;
    top: -96px;
    border-radius: 50%;
    background: rgba(6,59,120,.08);
}
.audience-card--primary { background: linear-gradient(180deg, #fff, #f6faff); }
.audience-card--gold { background: linear-gradient(180deg, #fffdf0, #fff); border-color: rgba(255,222,23,.46); }
.audience-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    font-size: 1.6rem;
    font-weight: 950;
    margin-bottom: 20px;
}
.audience-card--gold .audience-icon { background: var(--yellow-500); color: var(--blue-950); }
.audience-card span { display: block; color: var(--blue-700); font-weight: 950; margin-bottom: 10px; }
.audience-card h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); margin-bottom: 14px; }
.audience-card p { margin-bottom: 18px; }
.audience-card ul, .implementation-grid ol, .stack-cards ul, .outsourcing-grid ul { margin: 0; padding-left: 20px; color: var(--muted); }
.audience-card li, .implementation-grid li, .stack-cards li, .outsourcing-grid li { margin: 9px 0; }

.implementation-section { position: relative; overflow: hidden; }
.implementation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 20%, rgba(255,222,23,.15), transparent 23%), radial-gradient(circle at 88% 80%, rgba(6,59,120,.08), transparent 24%);
    pointer-events: none;
}
.implementation-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr .94fr .94fr;
    gap: 22px;
    align-items: stretch;
}
.implementation-grid article {
    border-radius: 32px;
    padding: 30px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(220,229,240,.92);
    box-shadow: var(--shadow-soft);
}
.implementation-main {
    color: #fff;
    background:
        radial-gradient(circle at 86% 18%, rgba(255,222,23,.25), transparent 22%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800)) !important;
    border-color: rgba(255,255,255,.14) !important;
}
.implementation-main h3, .implementation-main li { color: #fff; }
.implementation-main .step-label { background: var(--yellow-500); color: var(--blue-950); }
.step-label {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(6,59,120,.10);
    color: var(--blue-900);
    font-weight: 950;
    margin-bottom: 18px;
}
.implementation-grid h3 { margin-bottom: 16px; }
.implementation-grid ol { color: var(--ink); }

.student-services-section {
    background:
        linear-gradient(90deg, rgba(3,26,58,.035), transparent),
        #fff;
}
.service-stack {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}
.stack-copy {
    position: sticky;
    top: 120px;
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 12%, rgba(255,222,23,.22), transparent 24%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    box-shadow: var(--shadow);
    color: #fff;
}
.stack-copy h2, .stack-copy p { color: #fff; }
.stack-copy p { color: rgba(255,255,255,.82); margin: 18px 0 26px; }
.stack-cards { display: grid; gap: 20px; }
.stack-cards article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
    align-items: start;
    border-radius: 30px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(220,229,240,.92);
    box-shadow: var(--shadow-soft);
}
.stack-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    min-width: 0;
}
.stack-cards article span {
    width: 190px;
    min-height: 118px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    color: var(--blue-950);
    background: linear-gradient(135deg, var(--yellow-500), #fff1a6);
    font-weight: 950;
    flex-shrink: 0;
}
.stack-card__body {
    align-self: stretch;
    max-width: 620px;
}
.stack-cards h3 { margin-bottom: 12px; }
.stack-card__figure {
    margin: 0;
    min-height: 250px;
    align-self: stretch;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7faff, #edf3fa);
    border: 1px solid rgba(220,229,240,.92);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stack-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.outsourcing-section { position: relative; overflow: hidden; }
.outsourcing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.outsourcing-grid article {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(220,229,240,.92);
    box-shadow: var(--shadow-soft);
}
.outsourcing-grid article::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255,222,23,.15);
}
.outsourcing-number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: #fff;
    font-weight: 950;
    font-size: 1.35rem;
    margin-bottom: 20px;
}
.outsourcing-grid h3 { font-size: 1.35rem; margin-bottom: 14px; }

@media (max-width: 1100px) {
    .virtual-hero__grid, .audience-grid, .implementation-grid, .service-stack, .outsourcing-grid { grid-template-columns: 1fr; }
    .virtual-hero__visual { min-height: 560px; max-width: 680px; }
    .stack-copy { position: relative; top: auto; }
}
@media (max-width: 760px) {
    .virtual-hero { padding: 58px 0 72px; }
    .virtual-hero__visual { min-height: 500px; }
    .campus-window { inset: 42px 0 20px 0; transform: none; border-radius: 26px; }
    .campus-window__top { padding: 0 18px; height: 58px; }
    .campus-window__top strong { font-size: .74rem; }
    .campus-window__content { padding: 18px; }
    .campus-profile { padding: 18px; border-radius: 22px; }
    .campus-profile em { width: 52px; height: 52px; }
    .campus-grid { gap: 10px; }
    .campus-grid span { min-height: 82px; }
    .campus-badge { font-size: .82rem; padding: 11px 13px; }
    .campus-badge--one { left: 12px; }
    .campus-badge--two { right: 6px; top: 112px; }
    .campus-badge--three { right: 4px; bottom: 6px; }
    .audience-card, .implementation-grid article, .stack-copy, .stack-cards article, .outsourcing-grid article { border-radius: 24px; padding: 24px; }
    .audience-card { min-height: auto; }
    .stack-cards article { grid-template-columns: 1fr; gap: 20px; }
    .stack-card__content { gap: 18px; }
    .stack-cards article span { width: 100%; min-height: auto; }
    .stack-card__body { max-width: 100%; }
    .stack-card__figure { min-height: 220px; }
    .validation-panel { min-height: 500px; }
    .validation-card { transform: none; border-radius: 26px; }
    .validation-card__body { grid-template-columns: 1fr; padding: 24px; }
    .verify-lines { padding: 0 24px 24px; }
    .validation-chip { font-size: .82rem; padding: 11px 13px; }
    .validation-chip--one { top: 10px; }
    .validation-chip--two { bottom: 24px; }
}
@media (max-width: 1040px) {
    .nav { min-height: 76px; }
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; left: 15px; right: 15px; top: 120px; z-index: 1002;
        display: grid; gap: 8px; background: #fff; border: 1px solid var(--border);
        border-radius: 24px; padding: 18px; box-shadow: var(--shadow);
        opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
    }
    .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-menu a { padding: 13px 14px; border-radius: 14px; font-size: .94rem; }
    .nav-cta { width: 100%; }
}


/* =======================================================
   V8 - Virtualización premium + animaciones institucionales
   ======================================================= */
.virtualizacion-page .virtual-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 20%, rgba(255,222,23,.22), transparent 24%),
        radial-gradient(circle at 12% 85%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(135deg, #021632 0%, #063b78 54%, #082f66 100%);
}
.virtualizacion-page .virtual-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 76%, transparent);
}
.virtualizacion-page .virtual-hero__grid,
.virtualizacion-page .virtual-hero__copy,
.virtualizacion-page .virtual-hero__visual { position: relative; z-index: 1; }
.virtualizacion-page .virtual-hero__copy h1 { letter-spacing: -.065em; }
.virtualizacion-page .virtual-hero__copy p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.virtualizacion-page .campus-window {
    box-shadow: 0 36px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.22);
    animation: premiumFloat 7s ease-in-out infinite;
}
.virtualizacion-page .campus-grid span {
    background:
        radial-gradient(circle at 82% 18%, rgba(255,222,23,.22), transparent 30%),
        linear-gradient(135deg, rgba(7,63,121,.96), rgba(8,81,156,.78));
}
.campus-orbit {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.18);
    animation: orbitGlow 8s ease-in-out infinite;
}
.campus-orbit--one { width: 190px; height: 190px; right: 50px; top: 16px; }
.campus-orbit--two { width: 120px; height: 120px; left: 30px; bottom: 70px; animation-delay: -2.2s; }
@keyframes premiumFloat { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-14px); } }
@keyframes orbitGlow { 0%,100% { opacity: .34; transform: scale(.96); } 50% { opacity: .82; transform: scale(1.06); } }

.virtual-premium-strip {
    position: relative;
    z-index: 12;
    margin-top: -46px;
    padding-bottom: 10px;
}
.premium-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 32px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(220,229,240,.92);
    box-shadow: 0 24px 70px rgba(3,26,58,.14);
    backdrop-filter: blur(16px);
}
.premium-strip__grid article {
    position: relative;
    min-height: 138px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #f7fbff);
    border: 1px solid rgba(220,229,240,.84);
    overflow: hidden;
}
.premium-strip__grid article::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,222,23,.16);
}
.premium-strip__grid span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: var(--yellow-500);
    color: var(--blue-950);
    font-weight: 950;
}
.premium-strip__grid strong {
    display: block;
    color: var(--blue-900);
    font-size: 1.05rem;
    margin-bottom: 7px;
}
.premium-strip__grid small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.55;
}

.audience-section--premium {
    background:
        radial-gradient(circle at 12% 20%, rgba(255,222,23,.12), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.virtualizacion-page .audience-card {
    border-top: 5px solid rgba(6,59,120,.92);
    transform: translateZ(0);
}
.virtualizacion-page .audience-card--gold { border-top-color: var(--yellow-500); }
.virtualizacion-page .audience-card h3 { letter-spacing: -.035em; }
.virtualizacion-page .audience-card li,
.virtualizacion-page .implementation-grid li,
.virtualizacion-page .stack-cards li,
.virtualizacion-page .outsourcing-grid li { line-height: 1.62; }
.virtualizacion-page .audience-icon,
.virtualizacion-page .step-label,
.virtualizacion-page .outsourcing-number { box-shadow: 0 14px 32px rgba(3,26,58,.12); }

.implementation-section--premium {
    background:
        radial-gradient(circle at 16% 14%, rgba(255,222,23,.16), transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(6,59,120,.10), transparent 28%),
        linear-gradient(180deg, #f4f8fd, #fff);
}
.virtualizacion-page .implementation-grid article {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.virtualizacion-page .implementation-grid article:hover,
.virtualizacion-page .audience-card:hover,
.virtualizacion-page .stack-cards article:hover,
.virtualizacion-page .outsourcing-grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(3,26,58,.14);
}
.virtualizacion-page .implementation-grid article::after {
    content: "";
    position: absolute;
    right: -58px;
    top: -58px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,222,23,.12);
}

.student-services-section--premium {
    background:
        linear-gradient(180deg, #fff, #f7fbff 100%);
    overflow: hidden;
}
.virtualizacion-page .stack-copy {
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 28px 75px rgba(3,26,58,.22);
}
.virtualizacion-page .stack-copy::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,222,23,.14);
}
.virtualizacion-page .stack-card {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.virtualizacion-page .stack-card__figure {
    position: relative;
    min-height: 282px;
    box-shadow: 0 18px 46px rgba(3,26,58,.10);
}
.virtualizacion-page .stack-card__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(3,26,58,.12));
    pointer-events: none;
}
.virtualizacion-page .stack-card__figure img {
    transition: transform .5s ease, filter .5s ease;
}
.virtualizacion-page .stack-card:hover .stack-card__figure img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.04);
}

.outsourcing-section--premium {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,222,23,.14), transparent 30%),
        linear-gradient(180deg, #f6f9fd, #ffffff);
}
.virtualizacion-page .outsourcing-grid article {
    transition: transform .25s ease, box-shadow .25s ease;
    border-top: 5px solid var(--blue-900);
}
.virtualizacion-page .outsourcing-grid article:nth-child(2) { border-top-color: var(--yellow-500); }
.virtualizacion-page .outsourcing-grid article:nth-child(3) { border-top-color: var(--blue-700); }

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.virtualizacion-page .audience-grid > article:nth-child(2),
.virtualizacion-page .implementation-grid > article:nth-child(2),
.virtualizacion-page .outsourcing-grid > article:nth-child(2) { --reveal-delay: 110ms; }
.virtualizacion-page .audience-grid > article:nth-child(3),
.virtualizacion-page .implementation-grid > article:nth-child(3),
.virtualizacion-page .outsourcing-grid > article:nth-child(3) { --reveal-delay: 220ms; }
.virtualizacion-page .stack-cards > article:nth-child(2) { --reveal-delay: 110ms; }
.virtualizacion-page .stack-cards > article:nth-child(3) { --reveal-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
@media (max-width: 1100px) {
    .premium-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .virtualizacion-page .stack-cards article { grid-template-columns: 160px minmax(0,1fr); }
    .virtualizacion-page .stack-card__figure { grid-column: 1 / -1; min-height: 330px; }
}
@media (max-width: 760px) {
    .virtual-premium-strip { margin-top: 0; padding-top: 18px; }
    .premium-strip__grid { grid-template-columns: 1fr; padding: 12px; border-radius: 26px; }
    .premium-strip__grid article { min-height: auto; padding: 20px; }
    .campus-orbit { display: none; }
    .virtualizacion-page .campus-window { animation: none; }
    .virtualizacion-page .stack-card__figure { min-height: 230px; }
}


/* =======================================================
   V10 - Acabado corporativo tipo universidad internacional
   ======================================================= */
.virtualizacion-page {
    background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 18%, #f6f9fd 100%);
}
.virtualizacion-page .section-head h2,
.virtualizacion-page h1,
.virtualizacion-page h2,
.virtualizacion-page h3 {
    letter-spacing: -.045em;
}
.virtualizacion-page .section-head {
    max-width: 930px;
}
.virtualizacion-page .virtual-hero {
    min-height: 680px;
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(220,229,240,.72);
}
.virtualizacion-page .virtual-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 118px;
    background: linear-gradient(180deg, transparent, rgba(246,249,253,.92));
    pointer-events: none;
}
.virtual-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.virtual-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
}
.virtual-hero__chips span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow-500);
    margin-right: 8px;
}
.virtualizacion-page .virtual-hero .hero-actions {
    margin-top: 28px;
}
.virtualizacion-page .premium-strip__grid {
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(3,26,58,.16);
}
.virtualizacion-page .premium-strip__grid article {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.virtualizacion-page .premium-strip__grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(255,222,23,.72);
    box-shadow: 0 18px 48px rgba(3,26,58,.10);
}
.virtualizacion-page .audience-section,
.virtualizacion-page .implementation-section,
.virtualizacion-page .student-services-section,
.virtualizacion-page .outsourcing-section {
    position: relative;
}
.virtualizacion-page .audience-card,
.virtualizacion-page .implementation-grid article,
.virtualizacion-page .outsourcing-grid article,
.virtualizacion-page .stack-card {
    border-radius: 34px;
    border: 1px solid rgba(209,222,238,.95);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
}
.virtualizacion-page .audience-card::before,
.virtualizacion-page .implementation-grid article::after,
.virtualizacion-page .outsourcing-grid article::after {
    opacity: .75;
}

/* Servicios operativos: diseño uniforme y legible */
.virtualizacion-page .service-stack {
    grid-template-columns: 1fr;
    gap: 26px;
}
.virtualizacion-page .stack-copy {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 38px;
}
.virtualizacion-page .stack-copy .btn {
    align-self: center;
    white-space: nowrap;
}
.virtualizacion-page .stack-cards {
    gap: 26px;
}
.virtualizacion-page .stack-card {
    grid-template-columns: minmax(330px, .86fr) minmax(360px, 1.14fr);
    gap: 34px;
    padding: clamp(24px, 3vw, 36px);
    align-items: stretch;
    overflow: hidden;
}
.virtualizacion-page .stack-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,222,23,.13), transparent 22%),
        radial-gradient(circle at 92% 82%, rgba(6,59,120,.08), transparent 25%);
    pointer-events: none;
}
.virtualizacion-page .stack-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.virtualizacion-page .stack-cards article span {
    width: min(260px, 100%);
    min-height: 112px;
    border-radius: 28px;
    font-size: 1.05rem;
    box-shadow: 0 18px 36px rgba(255,222,23,.20);
}
.virtualizacion-page .stack-card__body {
    max-width: 100%;
}
.virtualizacion-page .stack-card__body h3 {
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.05;
    margin-bottom: 18px;
}
.virtualizacion-page .stack-card__body ul {
    display: grid;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}
.virtualizacion-page .stack-card__body li {
    position: relative;
    padding-left: 32px;
    color: #4e5f78;
    font-size: 1.04rem;
}
.virtualizacion-page .stack-card__body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--blue-950);
    background: var(--yellow-500);
    font-size: .78rem;
    font-weight: 950;
}
.virtualizacion-page .stack-card__figure {
    z-index: 1;
    min-height: 320px;
    border-radius: 30px;
    border: 1px solid rgba(209,222,238,.96);
    box-shadow: 0 24px 64px rgba(3,26,58,.13);
}
.virtualizacion-page .stack-card__figure img {
    object-fit: cover;
    object-position: center;
}
.virtualizacion-page .stack-card:nth-child(even) .stack-card__figure {
    order: -1;
}
.virtualizacion-page .stack-card:nth-child(even) .stack-card__content {
    align-items: flex-start;
}

.virtual-standards {
    padding: 26px 0 76px;
    background: linear-gradient(180deg, #fff, #f6f9fd);
}
.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.standards-grid article {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,251,255,.95));
    border: 1px solid rgba(209,222,238,.95);
    box-shadow: var(--shadow-soft);
}
.standards-grid article::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -52px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,222,23,.18);
}
.standards-grid span {
    display: inline-flex;
    color: var(--blue-950);
    background: var(--yellow-500);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: .74rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}
.standards-grid strong {
    display: block;
    color: var(--blue-900);
    font-size: 1.32rem;
    margin-bottom: 10px;
}
.standards-grid small {
    display: block;
    color: var(--muted);
    line-height: 1.62;
    font-weight: 700;
}
.virtualizacion-page .cta-strip {
    border-top: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 1180px) {
    .virtualizacion-page .stack-card,
    .virtualizacion-page .stack-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .virtualizacion-page .stack-card:nth-child(even) .stack-card__figure {
        order: 0;
    }
    .virtualizacion-page .stack-card__figure {
        min-height: 360px;
    }
    .standards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .virtualizacion-page .virtual-hero { min-height: auto; padding: 70px 0 80px; }
    .virtualizacion-page .virtual-hero::after { height: 60px; }
    .virtualizacion-page .stack-copy {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .virtualizacion-page .stack-copy .btn { width: 100%; }
    .virtualizacion-page .stack-card__figure { min-height: 280px; }
    .virtualizacion-page .stack-card__body h3 { font-size: clamp(1.6rem, 8vw, 2.25rem); }
    .virtualizacion-page .stack-cards article span { width: 100%; min-height: 92px; }
}
@media (max-width: 560px) {
    .virtualizacion-page .virtual-hero { padding: 52px 0 66px; }
    .virtual-hero__chips { gap: 8px; }
    .virtual-hero__chips span { width: 100%; justify-content: center; }
    .virtualizacion-page .stack-card { padding: 20px; border-radius: 28px; }
    .virtualizacion-page .stack-card__figure { min-height: 220px; border-radius: 24px; }
    .virtualizacion-page .stack-card__body li { font-size: .98rem; }
    .standards-grid article { border-radius: 24px; padding: 22px; min-height: auto; }
}


