body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    box-sizing: border-box;

    /* IMAGEN DE FONDO */
    background-image: url('imagenes/central2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.maint-box {
    box-sizing: border-box;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95); /* Fondo blanco con leve transparencia para que se aprecie la imagen de fondo */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
}
h1 {
    color: #020236;
    margin-top: 20px;
    font-size: 24px;
}
p {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0;
}
.contacto {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd; /* Una línea sutil para separar el texto de los datos */
}
.contacto p {
    font-weight: bold;
}
/* ESTILO PARA TU LOGO */
.logo {
    width: 100%;
    max-width: 380px; /* Ajusta este número si quieres que el logo se vea más grande o chico */
    height: auto;
    display: block;
    margin: 0 auto;
}
/* ESTILO PARA LOS ENLACES (Hacen que se pueda hacer clic) */
a {
    color: #B05000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

 /* --- BOTÓN DE WHATSAPP ORIGINAL ESTILIZADO Y FIJO --- */
.wsp-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    background-color: #25D366; /* Verde Oficial de WhatsApp */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 3px solid #ffffff;
    text-decoration: none;
    position: relative;
    z-index: 1002;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease;
}

/* Modificaciones estéticas de curvas internas del icono oficial */
.btn-whatsapp i {
    font-size: 34px;
    line-height: 1;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.15));
}

.btn-whatsapp:hover {
    background-color: #128C7E; /* Verde Oscuro Oficial de WhatsApp en interacción */
    color: white;
    transform: scale(1.08);
}

/* --- CAPAS DE PALPITACIÓN DINÁMICA (CREADAS POR JAVASCRIPT) --- */
.wsp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
}

/* Animación activa gatillada por JS */
.wsp-pulse.pulse-active {
    animation: pulse-wave 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Retardo para la segunda onda de palpitación */
.wsp-pulse.pulse-delay {
    animation-delay: 0.6s;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- AJUSTES RESPONSIVOS PARA CELULARES --- */
@media (max-width: 480px) {
    .maint-box {
        padding: 20px 16px;
        width: 92%;
    }
    h1 {
        font-size: 20px;
    }
    p {
        font-size: 14px;
    }
    .btn-whatsapp {
        width: 52px;
        height: 52px;
    }
    .wsp-pulse {
        width: 52px;
        height: 52px;
    }
    .btn-whatsapp i {
        font-size: 28px;
    }
}