/* .opciones {
    margin-top: 10px;
}

.opciones label {
    /*display: block;
    background: #f4f6f9;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.opciones label:hover {
    background: #e8f5e9;
}

.opciones input {
    margin-right: 10px;
}

.opcion {
    display: flex;
    align-items: center;   /* centra verticalmente 
    gap: 8px;              /* espacio entre radio y texto 
    background: #f4f6f9;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.opcion:hover {
    background: #e8f5e9;
}

.opcion input {
    margin: 0; /* elimina espacios raros del navegador 
}

/* CONTENEDOR MÁS ANGOSTO */
.container {
    max-width: 700px;
    margin: 30px auto;
    padding: 10px;
}

/* CARD */
.card {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FORMULARIO */
form label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

form input, form select {
    width: 100%;
    padding: 8px; /* 🔥 menos alto */
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* BOTÓN */
form button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

form button:hover {
    background: #1ebe5d;
}

/* OPCIONES */
.opciones {
    margin-top: 10px;
}

/* 🔥 OPCIONES MÁS COMPACTAS */
.opcion {
    display: flex;
    align-items: center;
    gap: 6px; /* menos separación */
    background: #f4f6f9;
    padding: 8px 10px; /* más compacto */
    margin-bottom: 6px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.opcion:hover {
    background: #e8f5e9;
}

/* RADIO */
.opcion input[type="radio"] {
    margin: 0;
    width: 15px;
    height: 15px;
}

/* TEXTO */
.opcion span {
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* SELECCIONADO */
.opcion input:checked + span {
    font-weight: 600;
    color: #25D366;
}

.oculto {
    display: none;
}

.btn-resultados {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.btn-resultados:hover {
    background: #1ebe5d;
}

.contenedor-centro {
    text-align: center;
}

/* CONTENEDOR GENERAL */
#countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

/* CADA CAJA */
.time-box {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: 0.3s;
}

/* EFECTO HOVER */
.time-box:hover {
    transform: translateY(-5px) scale(1.05);
}

/* NÚMEROS */
.time-box span {
    font-size: 26px;
    font-weight: bold;
}

/* TEXTO (DÍAS, HORAS, etc) */
.time-box small {
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* MENSAJE FINAL */
#mensaje-cierre {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #e11d48;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}

/* ANIMACIÓN */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}