/* ------------------------------------- */
/* Estilos Generales */
/* ------------------------------------- */

body {
    font-family: 'Arial', sans-serif;
    background-color: #b7f7af; 
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.maintenance-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    /* Animación simple de entrada */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

/* ------------------------------------- */
/* Estilos de Imágenes */
/* ------------------------------------- */

.company-logo {
    max-width: 80%; /* Tamaño máximo para el logo */
    
    height: auto;
    margin-bottom: 20px;
    margin-right: 10px;
}


#whatsapp-button {
    background-color: #25D366; /* Color verde de WhatsApp */
    color: white;
    margin:  auto;
    padding: 10px 25px;
    border: none;
    border-radius: 50px; /* Bordes redondeados */
    font-size: 1.0em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
}

#whatsapp-button:hover {
    background-color: #128C7E; /* Verde más oscuro al pasar el ratón */
    transform: translateY(-2px);
}

#whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

 #whatsapp-button::before {
    content: "\f232"; /* <- Este es el código de Font Awesome para WhatsApp */
    font-family: 'Font Awesome 5 Brands'; 
    margin-right: 10px;
} 

.maintenance-image {
    max-width: 60%; /* Imagen de mantenimiento un poco más grande */
    height: auto;
    margin: 20px 0;
    border-radius: 35px;
    /* Efecto de "respiración" para hacerlo interactivo */
    animation: pulse 2s infinite alternate; 
}

/* ------------------------------------- */
/* Estilos de Texto */
/* ------------------------------------- */

h3 {
    color: #007bff; /* Color primario, azul */
    font-size: 2.2em;
    margin-bottom: 10px;
}

.message {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.message1 {
    color: black;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0px;
}
.contact-info {
    font-size: 0.9em;
    color: #666;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ------------------------------------- */
/* Barra de Carga (Interactivo) */
/* ------------------------------------- */

.loading-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 30px;
}

.loader {
    width: 0;
    height: 100%;
    background-color: #28a745; /* Color secundario, verde */
    border-radius: 5px;
    /* La animación simula una carga constante */
    animation: loadingAnimation 2s infinite linear;
}



/* ------------------------------------- */
/* Animaciones Clave */
/* ------------------------------------- */

/* Efecto de entrada del contenedor */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de "pulsación" para la imagen */
@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.03);
    }
}

/* Simulación de barra de carga */
@keyframes loadingAnimation {
    0% {
        width: 0%;
        margin-left: -50%;
    }
    50% {
        width: 100%;
        margin-left: 0%;
    }
    100% {
        width: 0%;
        margin-left: 150%;
    }
}