/* Importar una fuente moderna de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6; /* Fondo gris claro */
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.maintenance-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

p {
    font-size: 1.1rem;
    color: #596a7b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Animación de los puntos de carga */
.loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    } 
    40% {
        transform: scale(1);
    }
}

/* Texto de contacto al final */
.contact-text {
    font-size: 0.95rem;
    margin-bottom: 0;
    border-top: 1px solid #e0e6ed;
    padding-top: 1.5rem;
}

.contact-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
}

.contact-text a:hover {
    text-decoration: underline;
}