/* --- ESTILOS CUENTA REGRESIVA (HELIX) --- */

/* Contenedor principal: Se asegura que esté centrado y con espacio */
.hc-container {
    position: relative;
    width: 100%;
    padding: 20px 15px;
    margin-top: -50px; /* Truco visual: Sube un poco para "pisar" la imagen del hero (opcional) */
    z-index: 5;
    display: flex;
    justify-content: center;
}

/* La caja visual del contador */
.hc-content {
    background: rgba(255, 255, 255, 0.95); /* Fondo blanco casi sólido */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 30px 50px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    border-bottom: 4px solid #ff5a2a; /* Detalle naranja abajo */
}

/* Título */
.hc-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #03315f; /* Azul Helix */
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contenedor Flex de los números */
.hc-timer {
    display: flex;
    justify-content: center;
    gap: 30px; /* Espacio entre cuadros */
    flex-wrap: wrap; /* Para que se adapte en celular */
}

/* Cada bloque de tiempo */
.hc-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* El cuadro del número */
.hc-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

/* El número grande */
.hc-number {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
    /* Degradado en el texto */
    background: -webkit-linear-gradient(45deg, #03315f, #ff5a2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* La etiqueta (Días, Horas...) */
.hc-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Mensaje final cuando termina */
.hc-message {
    font-size: 1.5rem;
    color: #ff5a2a;
    font-weight: bold;
    margin-top: 20px;
}

/* --- RESPONSIVE (Celulares) --- */
@media (max-width: 768px) {
    .hc-container {
        margin-top: 0;
    }
    .hc-content {
        padding: 20px;
    }
    .hc-timer {
        gap: 15px;
    }

    .hc-number {
        font-size: 2.2rem;
    }
    .hc-label {
        font-size: 0.7rem;
    }
    .hc-box {
        min-width: 70px;
    }
    .hc-title {
        font-size: 1.2rem;
    }
}