
:root{
    --primary:#e11d48;
    --glass:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

.hero{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    ),
    url('/images/fondo-interpueblos.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
}

.container{
    width:100%;
    max-width:1200px;
}

h1{
    font-size:clamp(3rem,8vw,7rem);
    font-weight:900;
    line-height:.92;
    text-transform:uppercase;
    margin-bottom:25px;
    text-shadow:0 3px 20px rgba(0,0,0,.5);
}

.highlight{
    color:var(--primary);
}

.subtitle{
    font-size:1.35rem;
    font-weight:500;
    color:#f1f5f9;
    margin-bottom:15px;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
}

.location{
    color:#d1d5db;
    font-size:1rem;
    margin-bottom:10px;
}

.badge{
    display:inline-block;
    margin-top:20px;
    margin-bottom:20px;
    padding:12px 24px;
    border-radius:999px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

    border:1px solid var(--border);
}

.live{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22c55e;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.6);
    }

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

.countdown{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    margin-top:50px;
    margin-bottom:35px;
}

.card{
    width:180px;

    padding:30px 15px;

    background:var(--glass);
    backdrop-filter:blur(15px);

    border-radius:20px;
    border:1px solid var(--border);

    transition:.3s ease;
}

.card:hover{
    transform:translateY(-5px);
}

.number{
    font-size:4rem;
    font-weight:900;
    line-height:1;
}

.label{
    margin-top:12px;

    text-transform:uppercase;
    letter-spacing:2px;

    color:#d1d5db;
    font-size:.85rem;
}

.info{
    margin-top:5px;

    font-size:1.3rem;
    font-weight:700;

    color:#fff;
}

.features{
    margin-top:35px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:15px;
}

.feature{
    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);

    font-size:.95rem;
}

.footer{
    margin-top:45px;

    color:#d1d5db;
    font-size:.95rem;
}

@media(max-width:768px){

    .hero{
        padding:30px 15px;
    }

    h1{
        font-size:3.3rem;
    }

    .subtitle{
        font-size:1.05rem;
        line-height:1.5;
    }

    .countdown{

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:15px;

        max-width:320px;

        margin:40px auto 25px;
    }

    .card{
        width:auto;
        padding:25px 10px;
    }

    .number{
        font-size:3rem;
    }

    .info{
        font-size:1.05rem;
        line-height:1.5;
    }

    .feature{
        font-size:.85rem;
        padding:10px 14px;
    }

    .footer{
        line-height:1.6;
    }
}
