    /* ── GLOBALS ─────────────────────────────────────────── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        background: linear-gradient(135deg, #ffffff 0%, #0cd5ff 33%, #0384c8 66%, #003393 100%);
        background-repeat: no-repeat;
        background-attachment: fixed;
        min-height: 100vh;
        font-family: 'Nunito', sans-serif;
        overflow-x: hidden;
    }

    /* Hero logo pulse */
    .hero-logo {
        width: 100%;
        height: auto;
        display: block;
        transform-origin: center;
        will-change: transform;
        animation: pulseScale 3s ease-in-out infinite;
    }

    @keyframes pulseScale {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.12);
        }
    }

    /* ── STARS / SPARKLES ────────────────────────────────── */
    .stars-layer {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .star {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #fff;
        border-radius: 50%;
        opacity: 0;
        animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
    }

    @keyframes twinkle {

        0%,
        100% {
            opacity: 0;
            transform: scale(0.6);
        }

        50% {
            opacity: 0.9;
            transform: scale(1.3);
        }
    }

    /* ── WRAPPER ─────────────────────────────────────────── */
    .page-wrap {
        position: relative;
        z-index: 1;
        padding: 2rem 1rem 4rem;
    }

    /* ── LOGO ────────────────────────────────────────────── */
    .logo-badge {
        width: 80px;
        height: 80px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
        font-family: 'Bangers', cursive;
        font-size: 1.5rem;
        color: #003393;
        letter-spacing: 1px;
        text-align: center;
        line-height: 1;
    }

    /* ── HERO TITLE ──────────────────────────────────────── */
    .hero-title {
        font-family: 'Bangers', cursive;
        font-size: clamp(3.5rem, 12vw, 7rem);
        letter-spacing: 4px;
        line-height: 0.95;
        text-align: center;
        position: relative;
        user-select: none;
    }

    .hero-title .excl {
        color: #fff;
    }

    .hero-title .word-falta {
        display: block;
        color: #ffe94e;
        -webkit-text-stroke: 3px #cc8800;
        paint-order: stroke fill;
        animation: popIn .6s cubic-bezier(.36, 1.56, .64, 1) both;
    }

    .hero-title .word-muy {
        display: block;
        color: #ff4db8;
        -webkit-text-stroke: 3px #99005e;
        paint-order: stroke fill;
        animation: popIn .6s .15s cubic-bezier(.36, 1.56, .64, 1) both;
    }

    .hero-title .word-poco {
        display: block;
        color: #fff;
        -webkit-text-stroke: 3px #0050a0;
        paint-order: stroke fill;
        animation: popIn .6s .3s cubic-bezier(.36, 1.56, .64, 1) both;
    }

    @keyframes popIn {
        0% {
            opacity: 0;
            transform: scale(.4) rotate(-8deg);
        }

        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }

    /* Burst rings behind title */
    .title-burst {
        position: absolute;
        inset: -20px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, .18);
        animation: burstPulse 2.4s ease-in-out infinite;
        pointer-events: none;
    }

    .title-burst:nth-child(2) {
        inset: -38px;
        animation-delay: .6s;
    }

    .title-burst:nth-child(3) {
        inset: -56px;
        animation-delay: 1.2s;
    }

    @keyframes burstPulse {

        0%,
        100% {
            opacity: .5;
            transform: scale(1);
        }

        50% {
            opacity: .1;
            transform: scale(1.07);
        }
    }

    /* ── SUBTITLE ────────────────────────────────────────── */
    .subtitle-band {
        background: linear-gradient(90deg, #ffe94e, #ffb700);
        border-radius: 50px;
        padding: .55rem 2rem;
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        font-weight: 800;
        color: #003393;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
        animation: slideDown .7s .5s cubic-bezier(.36, 1.56, .64, 1) both;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── WARRIORS IMAGE ──────────────────────────────────── */
    .warriors-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        margin: -1rem 0;
        z-index: 2;
    }

    .warriors-wrap img {
        max-width: min(580px, 100%);
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .4));
        animation: floatUp 3.5s ease-in-out infinite;
    }

    @keyframes floatUp {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    /* ── CARDS ───────────────────────────────────────────── */
    .group-card {
        border: none;
        border-radius: 18px;
        padding: 1.5rem 1.6rem;
        position: relative;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
        animation: cardAppear .5s cubic-bezier(.36, 1.56, .64, 1) both;
        overflow: visible;
    }

    .group-card.g1 {
        background: #fffde7;
        animation-delay: .6s;
    }

    .group-card.g2 {
        background: #e0f7fa;
        animation-delay: .75s;
    }

    .group-card.g3 {
        background: #fce4ec;
        animation-delay: .9s;
    }

    .group-card.g4 {
        background: #146c43;
        animation-delay: 1.05s;
    }

    @keyframes cardAppear {
        from {
            opacity: 0;
            transform: scale(.85) translateY(20px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    /*.group-card:nth-child(1) {
        animation-delay: .6s;
    }

    .group-card:nth-child(2) {
        animation-delay: .75s;
    }

    .group-card:nth-child(3) {
        animation-delay: .9s;
    }

    .group-card:nth-child(4) {
        animation-delay: 1.05s;
    }*/

    .card-header-title {
        font-family: 'Bangers', cursive;
        font-size: 1.35rem;
        letter-spacing: 1px;
        margin-bottom: .6rem;
    }

    .g1 .card-header-title {
        color: #cc7700;
    }

    .g2 .card-header-title {
        color: #006699;
    }

    .g3 .card-header-title {
        color: #9c0060;
    }

    .turno-line {
        font-weight: 700;
        font-size: .97rem;
        color: #1a1a2e;
        margin: .18rem 0;
    }

    .turno-line span {
        color: #555;
        font-weight: 600;
    }

    /* cupos badge */
    .cupos-badge {
        position: absolute;
        bottom: -14px;
        right: 16px;
        background: #ff3fa4;
        color: #fff;
        font-family: 'Bangers', cursive;
        font-size: 1.6rem;
        letter-spacing: 1px;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(255, 63, 164, .45);
        line-height: 1;
        animation: badgePop 1s 1.2s cubic-bezier(.36, 1.56, .64, 1) both;
    }

    .cupos-badge small {
        font-family: 'Nunito', sans-serif;
        font-size: .6rem;
        font-weight: 800;
        letter-spacing: 1px;
    }

    @keyframes badgePop {
        from {
            opacity: 0;
            transform: scale(0) rotate(-20deg);
        }

        to {
            opacity: 1;
            transform: scale(1) rotate(0);
        }
    }

    /* ── FOOTER ─────────────────────────────────────────── */
    .site-footer {
        text-align: center;
        color: rgba(255, 255, 255, .7);
        font-size: .82rem;
        margin-top: 3rem;
    }

    .site-footer strong {
        color: #ffe94e;
    }

    .icono-box{
        display: none;
    }

    .card-taller:hover{
        transform: translateY(-6px);        
        transition: all .3s ease;
    }

    /* ── WHATSAPP BUTTON ─────────────────────────────────── */
    .whatsapp-button {
        display: inline-flex;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-button img {
        width: 36px;
        height: 36px;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* ── WHATSAPP BUTTON ANIMATION ───────────────────────── */
    .btn-whatsapp-animation {
        position: relative;
        background: linear-gradient(135deg, #146c43 0%, #146c43 50%, #146c43 100%);
        border-radius: 50px;
        overflow: visible;
        animation: whatsappPulse 2s ease-in-out infinite, whatsappFloat 3s ease-in-out infinite;
        box-shadow: 
            0 4px 15px rgba(37, 211, 102, 0.4),
            0 0 30px rgba(37, 211, 102, 0.2);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .btn-whatsapp-animation::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 54px;
        background: linear-gradient(45deg, #146c43, #146c43, #146c43, #075E54);
        background-size: 300% 300%;
        z-index: -1;
        animation: gradientShift 3s ease infinite;
        opacity: 0.7;
    }

    .btn-whatsapp-animation::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 58px;
        border: 2px solid rgba(37, 211, 102, 0.5);
        animation: ringPulse 1.5s ease-out infinite;
        pointer-events: none;
    }

    .btn-whatsapp-animation:hover {
        transform: scale(1.08) translateY(-4px);
        box-shadow: 
            0 8px 30px rgba(37, 211, 102, 0.6),
            0 0 50px rgba(37, 211, 102, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .btn-whatsapp-animation .btn {
        position: relative;
        z-index: 1;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .btn-whatsapp-animation .btn i {
        font-size: 1.4rem;
        margin-right: 8px;
        animation: iconShake 2s ease-in-out infinite;
    }

    @keyframes whatsappPulse {
        0%, 100% {
            box-shadow: 
                0 4px 15px rgba(37, 211, 102, 0.4),
                0 0 30px rgba(37, 211, 102, 0.2);
        }
        50% {
            box-shadow: 
                0 6px 25px rgba(37, 211, 102, 0.6),
                0 0 50px rgba(37, 211, 102, 0.4);
        }
    }

    @keyframes whatsappFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-6px);
        }
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    @keyframes ringPulse {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }
        100% {
            transform: scale(1.15);
            opacity: 0;
        }
    }

    @keyframes iconShake {
        0%, 100% {
            transform: rotate(0deg);
        }
        10% {
            transform: rotate(-10deg);
        }
        20% {
            transform: rotate(10deg);
        }
        30% {
            transform: rotate(-10deg);
        }
        40% {
            transform: rotate(10deg);
        }
        50%, 100% {
            transform: rotate(0deg);
        }
    }