:root {
    --vt-blue: #0a41ff;
    --vt-blue-2: #0b2db8;
    --vt-celeste: #08c9ff;
    --vt-yellow: #f6c320;
    --vt-green: #2ee59d;
    --vt-pink: #ff5db7;

    --bg: #0b1220;
    --txt: #eaf0ff;
    --muted: rgba(234, 240, 255, .78);

    --max: 1180px;
    --r-xl: 28px;
    --r-lg: 22px;
    --r-md: 14px;

    --shadow: 0 20px 70px rgba(0, 0, 0, .45);
    --shadow2: 0 18px 45px rgba(0, 0, 0, .14);

    /* ✅ TU IMAGEN DE FONDO DEL HERO (solo cambiar ruta) */
    --hero-image: url("../images/portfolio/niño_programacion.png");
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
        radial-gradient(1200px 700px at 30% 20%, rgba(0, 180, 255, .18), transparent 60%),
        radial-gradient(900px 650px at 70% 25%, rgba(0, 255, 160, .10), transparent 60%),
        linear-gradient(180deg, #09101e, #050711 70%);
    color: var(--txt);
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 17, .75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--vt-green), #36d0ff);
}

.logo__text {
    line-height: 1
}

.logo__text span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nav__links a {
    color: rgba(234, 240, 255, .88);
    font-weight: 800;
    text-decoration: none;
}

/* Buttons */
.btn {
    border: 0;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--green {
    background: linear-gradient(135deg, var(--vt-green), #2ea7cca6);
    color: #1e6577
}

.btn--yellow {
    background: linear-gradient(135deg, var(--vt-yellow), #ffd978);
    color: #151515
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22)
}

.btn--black {
    background: #1d1f25;
    color: #fff
}

.btn--wa {
    background: linear-gradient(135deg, #25D366, #0fb6a8);
    color: #061018
}

.btn--full {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px
}

/* HERO */
.hero {
    position: relative;
    padding: 34px 0 0;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 7, 17, .62), rgba(5, 7, 17, .78)),
        var(--hero-image),
        radial-gradient(900px 700px at 20% 30%, rgba(255, 140, 0, .18), transparent 62%),
        radial-gradient(900px 700px at 85% 40%, rgba(255, 0, 170, .14), transparent 60%),
        radial-gradient(900px 700px at 60% 75%, rgba(10, 65, 255, .18), transparent 62%);
    background-size: cover, cover, auto, auto, auto;
    background-position: center, center, center, center, center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: start;
}

@media (max-width:991px) {
    .hero__grid {
        grid-template-columns: 1fr
    }
}

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    font-weight: 900;
    font-size: 12px;
}

.pixel {
    font-family: "Press Start 2P", system-ui;
    line-height: 1.05;
    font-size: clamp(26px, 3vw, 44px);
    margin: 0 0 14px;
    letter-spacing: -.5px;
    text-shadow: 0 8px 35px rgba(0, 0, 0, .65);
}

.sub {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 60ch;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

/* info pills */
.info-pills {
    display: grid;
    gap: 12px;
    margin-top: 16px
}

.info-pill {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(10, 65, 255, .55), rgba(10, 65, 255, .25));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

/* ✅ FIX: el icono ya no es un div vacío */
.ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
}

.ico i {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.ico--cal {
    background: rgba(255, 255, 255, .12)
}

.info-pill__t {
    font-weight: 1000;
    font-size: 13px
}

.info-pill__s {
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
    margin-top: 3px
}

/* FORM */
.form-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.form-card__head {
    background: var(--vt-yellow);
    color: #141414;
    padding: 14px 16px
}

.promo {
    font-weight: 1000;
    letter-spacing: .4px
}

.promo-sub {
    font-weight: 1000;
    font-size: 13px;
    margin-top: 4px
}

.promo-note {
    margin-top: 10px;
    background: #111827;
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.35;
    opacity: 1;
}

.form-card__body {
    background: #fff;
    color: #0f1220;
    padding: 16px
}

.form-card__body h3 {
    margin: 0 0 4px;
    font-weight: 1000;
    font-size: 16px
}

.form-card__body p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.5
}

.form {
    display: grid;
    gap: 10px
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

@media (max-width:520px) {
    .row2 {
        grid-template-columns: 1fr
    }
}

input,
select {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    outline: none;
}

input:focus,
select:focus {
    border-color: #3b82f6
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: #374151
}

.check input {
    width: 16px;
    height: 16px;
    margin-top: 2px
}

/* STRIP */
.strip {
    margin-top: 18px;
    background: linear-gradient(90deg, var(--vt-blue), var(--vt-blue-2));
    border-top: 6px solid rgba(255, 255, 255, .10);
    border-bottom: 6px solid rgba(255, 255, 255, .10);
}

.strip__inner {
    padding: 14px 0;
    text-align: center;
    font-weight: 1000;
    letter-spacing: .8px
}

/* FLOATERS (HERO) */
.floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.flo {
    position: absolute;
    opacity: .92;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .45))
}

.flo--cube {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .18);
    transform: rotate(14deg);
    animation: bob 6.5s ease-in-out infinite;
}

.flo--brick {
    width: 64px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(246, 195, 32, .88), rgba(255, 93, 183, .30));
    border: 1px solid rgba(255, 255, 255, .18);
    transform: rotate(-10deg);
    animation: bob2 7.2s ease-in-out infinite;
}

.flo--coin {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .95), rgba(255, 255, 255, .22) 35%, rgba(246, 195, 32, .92) 70%);
    border: 1px solid rgba(255, 255, 255, .22);
    animation: spin 6s linear infinite;
}

.flo--spark {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, #36d0ff, rgba(255, 255, 255, .18));
    border: 1px solid rgba(255, 255, 255, .20);
    transform: rotate(15deg);
    animation: bob 4.2s ease-in-out infinite;
}

.flo--1 {
    left: 4%;
    top: 18%
}

.flo--2 {
    left: 12%;
    top: 62%;
    animation-delay: -1.2s
}

.flo--3 {
    right: 10%;
    top: 20%
}

.flo--4 {
    right: 6%;
    top: 55%;
    animation-delay: -2.4s
}

.flo--5 {
    left: 46%;
    top: 14%
}

.flo--6 {
    right: 44%;
    top: 68%;
    animation-delay: -1.6s
}

.flo--7 {
    left: 62%;
    top: 42%;
    animation-delay: -.8s
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0) rotate(14deg)
    }

    50% {
        transform: translateY(-14px) rotate(16deg)
    }
}

@keyframes bob2 {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg)
    }

    50% {
        transform: translateY(-12px) rotate(-8deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* =========================
   VT SECTIONS
========================= */
.vt-container {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto
}

.vt-section {
    padding: 54px 0;
    background: #fff;
    color: #0b0f1a
}

.vt-h2 {
    font-family: "Press Start 2P", system-ui;
    letter-spacing: .3px;
    line-height: 1.25
}

.vt-title {
    font-size: 18px;
    text-align: center;
    margin: 0 0 10px
}

.vt-title-center {
    font-size: 20px;
    text-align: center;
    margin: 0 0 10px
}

.vt-sub {
    margin: 0 auto 22px;
    text-align: center;
    color: #556070;
    max-width: 72ch
}

.vt-sub-center {
    margin: 0 auto 26px;
    text-align: center;
    color: #556070;
    max-width: 78ch
}

.vt-grid {
    display: grid;
    gap: 18px
}

.vt-grid--2 {
    grid-template-columns: 1fr 1fr
}

.vt-grid--3 {
    grid-template-columns: repeat(3, 1fr)
}

.vt-gap-xl {
    gap: 26px
}

@media (max-width:992px) {

    .vt-grid--2,
    .vt-grid--3 {
        grid-template-columns: 1fr
    }
}

/* Tabs */
.vt-tabs {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 18px 0 28px
}

.vt-tab {
    border: 2px solid var(--vt-pink);
    background: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 1000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vt-tab .vt-tab-ico {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(10, 65, 255, .10);
    border: 1px solid rgba(10, 65, 255, .25);
}

.vt-tab.is-active {
    background: var(--vt-yellow);
    border-color: var(--vt-yellow)
}

.vt-tab--cyan {
    border-color: #36d0ff
}

.vt-tab--gray {
    border-color: #cfd6df;
    color: #3a4657
}

.vt-pane {
    display: none
}

.vt-pane.is-active {
    display: block
}

/* Cards amarillas */
.vt-card-yellow {
    display: grid;
    grid-template-columns: 42% 58%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--vt-yellow);
    box-shadow: var(--shadow2);
    min-height: 170px;
}

@media (max-width:640px) {
    .vt-card-yellow {
        grid-template-columns: 1fr
    }
}

.vt-card-media {
    position: relative;
    background: #e9edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    overflow: hidden;
}

.vt-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vt-card-body {
    padding: 18px
}

.vt-card-title {
    margin: 0 0 12px;
    font-weight: 1000;
    color: var(--vt-blue);
    font-size: 18px;
    line-height: 1.15;
}

.vt-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
    font-size: 15px
}

.vt-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111;
    margin-right: 8px;
    vertical-align: -1px
}

.vt-cta-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px
}

.vt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 1000;
    letter-spacing: .3px;
    text-decoration: none;
    border: 0;
}

.vt-btn--yellow {
    background: var(--vt-yellow);
    color: #111;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12)
}

.vt-empty {
    border: 2px dashed #d5dbea;
    border-radius: 22px;
    padding: 22px;
    color: #5c6677;
    text-align: center
}

/* Floaters dentro del placeholder */
.ph-flo {
    position: absolute;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .45);
    opacity: .9;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .25));
}

.ph-flo--1 {
    width: 34px;
    height: 34px;
    right: 10px;
    top: 14px;
    background: linear-gradient(135deg, #36d0ff, rgba(255, 255, 255, .2));
    animation: bob 5.2s ease-in-out infinite
}

.ph-flo--2 {
    width: 52px;
    height: 30px;
    left: 12px;
    bottom: 14px;
    background: linear-gradient(135deg, rgba(246, 195, 32, .85), rgba(255, 93, 183, .28));
    animation: bob2 6.3s ease-in-out infinite
}

.ph-flo--3 {
    width: 28px;
    height: 28px;
    right: 14px;
    bottom: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, .15), rgba(246, 195, 32, .9));
    animation: spin 6s linear infinite
}

.ph-flo--4 {
    width: 18px;
    height: 18px;
    left: 14px;
    top: 14px;
    background: linear-gradient(135deg, rgba(10, 65, 255, .9), rgba(255, 255, 255, .2));
    animation: bob 4.6s ease-in-out infinite
}

/* =========================
   HORARIOS (COMPLETO)
   ========================= */

.vt-panel-celeste {
    position: relative;
    background: var(--vt-celeste);
    border-radius: 46px;
    padding: 34px 26px;
    overflow: hidden;
}

.vt-panel-title {
    text-align: center;
    margin: 0 0 18px;
    font-size: 22px;
    color: #04101a;
    text-shadow: 0 6px 18px rgba(255, 255, 255, .25);
}

/* SOLO 1 PILL => CENTRADO */
.vt-pill-row {
    display: flex;
    justify-content: center;
    /* ✅ antes: space-between */
    gap: 16px;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 0 auto 18px;
}

.vt-pill {
    background: var(--vt-blue);
    color: #fff;
    font-weight: 1000;
    padding: 12px 18px;
    border-radius: 999px;
    min-width: 220px;
    text-align: center;
}

@media (max-width:992px) {
    .vt-pill {
        min-width: auto;
        flex: 1;
    }
}

/* Tarjeta */
.vt-white-card {
    background: #fff;
    border-radius: 26px;
    padding: 18px;
    box-shadow: var(--shadow2);
}

/* ✅ Cabecera 3 columnas */
.vt-white-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.vt-white-head--3 {
    display: grid;
    /* ✅ */
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 12px;
    align-items: center;
}

.vt-mini-pill {
    background: var(--vt-yellow);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 1000;
    color: #111;
    text-align: center;
}

/* Tabla */
.vt-white-table {
    display: grid;
    gap: 10px;
}

/* ✅ Fila 3 columnas */
.vt-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    padding: 10px 6px;
    border-bottom: 1px solid #e9edf5;
}

.vt-row--3 {
    grid-template-columns: 1.2fr .8fr .8fr;
    /* ✅ */
}

.vt-col {
    font-size: 13px;
    color: #121826;
}

.vt-col--curso {
    color: #0c2350;
}

.vt-note {
    font-size: 12px;
    color: #2f3b4a;
    margin-top: 6px;
}

/* Responsive: apila */
@media (max-width:720px) {
    .vt-white-head--3 {
        grid-template-columns: 1fr;
    }

    .vt-row--3 {
        grid-template-columns: 1fr;
    }
}

/* Floaters horarios */
.sec-floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sec-flo {
    position: absolute;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08));
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .22));
    opacity: .95;
    animation: bob 6.2s ease-in-out infinite;
}

.sec-flo--a {
    width: 70px;
    height: 46px;
    left: 24px;
    top: 30%;
    transform: rotate(12deg);
}

.sec-flo--b {
    width: 46px;
    height: 46px;
    right: 28px;
    top: 18%;
    transform: rotate(-10deg);
    animation-delay: -1.6s;
}

.sec-flo--c {
    width: 34px;
    height: 34px;
    right: 60px;
    bottom: 16%;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, .2), rgba(246, 195, 32, .85));
    animation: spin 7s linear infinite;
}

/* BENEFICIOS */
.vt-top-badge {
    width: max-content;
    margin: 0 auto 14px;
    background: var(--vt-blue);
    color: #fff;
    font-weight: 1000;
    padding: 12px 20px;
    border-radius: 14px;
}

.vt-benefit-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow2);
    background: #fff
}

.vt-benefit-media {
    height: 220px;
    overflow: hidden;
    background: #e9edf5;
}

.vt-benefit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vt-benefit-body {
    background: var(--vt-yellow);
    padding: 18px;
    min-height: 180px
}

.vt-benefit-body h3 {
    margin: 0 0 10px;
    color: var(--vt-blue);
    font-weight: 1000;
    line-height: 1.1
}

.vt-benefit-body p {
    margin: 0;
    color: #121826;
    line-height: 1.5;
    font-size: 15px
}

/* FAQ */
.vt-faq {
    background: #f5f6f8;
    color: #0b0f1a
}

.vt-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 38px;
    margin-top: 22px;
}

@media (max-width:992px) {
    .vt-faq-grid {
        grid-template-columns: 1fr
    }
}

.vt-faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    border: 2px solid #e6ebf3;
    display: grid;
    grid-template-columns: 48px 1fr 32px;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: border .25s ease, box-shadow .25s ease;
}

.vt-faq-item:hover {
    border-color: var(--vt-blue);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.vt-faq-num {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--vt-blue);
    color: #fff;
    font-weight: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.vt-faq-q {
    background: none;
    border: 0;
    text-align: left;
    font-size: 15px;
    font-weight: 1000;
    color: #0b0f1a;
    line-height: 1.4;
    cursor: pointer;
    padding: 0;
}

.vt-faq-plus {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(10, 65, 255, .1);
    color: var(--vt-blue);
    font-size: 20px;
    font-weight: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .3s ease;
}

.vt-faq-a {
    grid-column: 1 / -1;
    margin-top: 14px;
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
}

.vt-faq-item.is-open {
    border-color: var(--vt-blue);
}

.vt-faq-item.is-open .vt-faq-plus {
    transform: rotate(45deg);
    background: var(--vt-blue);
    color: #fff;
}

.vt-faq-item.is-open .vt-faq-a {
    max-height: 260px;
    opacity: 1;
}

/* FOOTER */
.vt-footer {
    margin-top: 0
}

.vt-footer-hero {
    position: relative;
    min-height: 360px;
    background:
        radial-gradient(900px 500px at 30% 30%, rgba(246, 195, 32, .35), transparent 60%),
        radial-gradient(900px 500px at 75% 55%, rgba(255, 0, 170, .20), transparent 60%),
        linear-gradient(180deg, #141a26, #0b0f1a);
    color: #fff;
    overflow: hidden;
}

.vt-footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(246, 195, 32, .35), rgba(10, 65, 255, .20), rgba(255, 0, 170, .18));
    opacity: .65;
    pointer-events: none;
}

.vt-footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: end;
    padding: 44px 0;
}

@media (max-width:992px) {
    .vt-footer-inner {
        grid-template-columns: 1fr
    }
}

.vt-footer-pixel {
    font-family: "Press Start 2P", system-ui;
    margin: 0;
    line-height: 1.05;
    font-size: 34px;
    text-shadow: 0 16px 40px rgba(0, 0, 0, .55);
}

.vt-footer-right {
    display: grid;
    gap: 14px;
    justify-items: end
}

@media (max-width:992px) {
    .vt-footer-right {
        justify-items: start
    }
}

.vt-footer-legal {
    font-weight: 900;
    opacity: .95
}

.vt-footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    opacity: .95
}

/* ✅ FIX: iconos footer ahora son LINKS y SI se ven */
.vt-social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s ease;
}

.vt-social-link i {
    font-size: 18px;
    line-height: 1;
}

.vt-social-link:hover {
    transform: translateY(-3px) scale(1.08);
    background: #f6c320;
    color: #111;
}

.vt-footer-bar {
    background: var(--vt-yellow);
    color: #111;
    font-weight: 1000;
    padding: 14px 0
}

/* Floaters footer */
.footer-floaters {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.ft-flo {
    position: absolute;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .35));
    opacity: .9;
    animation: bob 7.2s ease-in-out infinite;
}

.ft-flo--1 {
    width: 70px;
    height: 46px;
    left: 26px;
    bottom: 22%;
    transform: rotate(12deg)
}

.ft-flo--2 {
    width: 46px;
    height: 46px;
    right: 28px;
    bottom: 34%;
    transform: rotate(-10deg);
    animation-delay: -1.4s
}

.ft-flo--3 {
    width: 34px;
    height: 34px;
    left: 48%;
    top: 18%;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, .15), rgba(246, 195, 32, .85));
    animation: spin 9s linear infinite;
}

/* micro-fix 320px */
@media (max-width:360px) {

    .container,
    .vt-container {
        width: calc(100% - 28px)
    }

    .vt-panel-celeste {
        padding: 26px 16px
    }

    .pixel {
        font-size: 24px
    }
}

/* =========================
   PRELOADER (Ottito)
========================= */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

#preloader-video {
    width: 250px;
    height: auto;
    border-radius: 14px;
    animation: floatOttito 1.6s ease-in-out infinite;
}

@keyframes floatOttito {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Ajuste fino: mover formulario a la derecha (solo desktop) */
@media (min-width: 1200px) {
    .hero__right {
        transform: translateX(100px);
    }
}

.btn--wa i {
    margin-right: 8px;
    font-size: 18px;
}

.vt-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 520px));
    gap: 26px;
    justify-content: center;
    /* centra TODA la grilla */
    align-items: stretch;
}

/* opcional: para que todas se vean iguales */
.vt-cards-grid .vt-card-yellow {
    width: 100%;
}

/* responsive */
@media (max-width: 1100px) {
    .vt-cards-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
}

/* =========================
   LOGO NAV (IMAGEN REAL)
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    /* 🔴 AQUÍ VA TU IMAGEN */
    background-image: url("../images/logos/logo urusayhua blanco.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    flex-shrink: 0;
}

.logo__text {
    line-height: 1;
}

.logo__text strong {
    display: block;
    font-weight: 900;
    font-size: 14px;
    color: #ffffff;
}

.logo__text span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    margin-top: 2px;
}