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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contenedor-construccion {
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo_sale {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.contenido h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contenido p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.temporizador {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.caja-tiempo {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 90px;
}

.caja-tiempo span {
    font-size: 2rem;
    font-weight: 600;
    display: block;
}

.caja-tiempo p {
    font-size: 0.8rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

#formulario-suscripcion {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#formulario-suscripcion input {
    padding: 15px;
    border-radius: 5px;
    border: none;
    width: 300px;
    font-size: 1rem;
}

#formulario-suscripcion button {
    padding: 15px 25px;
    border-radius: 5px;
    border: none;
    background-color: #fdbb2d;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#formulario-suscripcion button:hover {
    background-color: #ffffff;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}
