/* --- ESTILOS PÁGINA PRÓXIMAMENTE --- */

/* Importamos una fuente bonita si no la tienes */
body {
    font-family: 'Poppins', sans-serif; /* Asegúrate de que coincida con tu diseño */
}

.coming-soon-container {
    /* Esto centra todo en la pantalla */
    height: 100vh; /* Altura completa de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%); /* Fondo oscuro moderno */
    color: white;
    text-align: center;
    padding: 20px;
}

.content-box {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05); /* Efecto cristal suave */
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.brand-name {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.tagline {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4CAF50; /* Un verde tecnológico */
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ddd;
}

/* Estilos del Contador */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
    border: 1px solid #444;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.time-box small {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #aaa;
}

/* Botones */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp, .btn-email {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-whatsapp {
    background-color: #25D366; /* Color oficial WhatsApp */
    color: white;
}

.btn-email {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-whatsapp:hover, .btn-email:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Ajustes para celular */
@media (max-width: 600px) {
    .brand-name { font-size: 2rem; }
    .countdown { gap: 10px; }
    .time-box { min-width: 60px; padding: 10px; }
    .time-box span { font-size: 1.5rem; }
}