/* CSS Simplificado para Proximamente - Consistente con index.php */

.proximamente-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    /* padding: 50px 0; */
}

.proximamente-content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.proximamente-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.proximamente-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Contador Simple */
.countdown-simple {
    margin: 40px 0;
}

.countdown-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 10px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.countdown-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Formulario de notificación */
.notify-section {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.notify-section h3 {
    font-family: 'Oswald', sans-serif;
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    max-width: 100%;
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px 20px;
    font-weight: 500;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Características simples */
.features-simple {
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    margin: 15px 0;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
    display: block;
}

.feature-box p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
    .proximamente-title {
        font-size: 2.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .proximamente-content {
        padding: 20px;
        margin: 15px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group .btn {
        margin-top: 10px;
        border-radius: 0.375rem !important;
    }
    
    .feature-box {
        margin: 10px 0;
    }
}