/* Reseteo básico para asegurar consistencia en diferentes navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8; /* Fondo gris/azul claro y limpio */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.maintenance-container {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Sombra suave para darle profundidad */
    max-width: 550px;
    width: 90%;
    border-top: 5px solid #0056b3; /* Línea de acento institucional */
}

.icon {
    font-size: 65px;
    margin-bottom: 20px;
    animation: spin 6s linear infinite; /* Animación sutil para indicar actividad */
}

h1 {
    font-size: 28px;
    color: #1a2b3c;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    background-color: #e1e8ed;
    margin: 20px 0;
}

p.contact {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Animación opcional para el engranaje */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Ajuste para pantallas móviles muy pequeñas */
@media (max-width: 480px) {
    .maintenance-container {
        padding: 40px 25px;
    }
    h1 {
        font-size: 24px;
    }
}