/* backindex.css - Estilos específicos para la vista de "Estamos Mejorando" */

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: white;
    background-color: #0b1120;
    font-family: 'Inter', sans-serif;
}

.maintenance-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../assets/bk.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Un gradiente oscuro azulado para replicar el filtro de la imagen original */
    background: linear-gradient(to bottom, rgba(14, 27, 49, 0.85), rgba(14, 27, 49, 0.95));
    z-index: -1;
}

/* Header */
.maintenance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.maintenance-header .logo img {
    height: 45px;
}

.menu-icon {
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Main Content */
.maintenance-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 550px;
    margin-bottom: 40px;
    text-align: left;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.progress-text {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.progress-percentage {
    color: var(--primary, #0084FE);
    font-weight: 700;
    font-size: 1rem;
}

.progress-bar-bg {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary, #0084FE);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary, #0084FE);
}

/* Notification Card */
.notification-card {
    background: rgba(20, 30, 48, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px 35px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.notification-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.notify-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.notify-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    background: white;
    color: #333;
}

.notify-form input::placeholder {
    color: #888;
}

.btn-notify {
    background-color: var(--primary, #0084FE);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-notify:hover {
    background-color: var(--primary-light, #1A90FF);
}

.btn-notify:active {
    transform: scale(0.98);
}

.card-footer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer */
.maintenance-footer {
    padding: 40px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #4A90E2;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {

    .maintenance-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 40px 20px;
    }

    .maintenance-footer {
        padding: 40px 0;
    }

    .subtitle {
        font-size: 1rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .btn-notify {
        padding: 15px;
    }

    .notification-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}