/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 20 2025 | 06:57:24 */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Estilo general de los botones */
.boton-correo, .boton-whatsapp {
    position: fixed;
    right: 23px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    z-index: 1000;
}

/* Botón de correo (azul) */
.boton-correo {
    bottom: 110px; /* Más arriba para dejar espacio al botón de WhatsApp */
    background-color: #66A7C6; /* Celeste */
}

.boton-correo:hover {
    background-color: #60a7c7;
}

/* Botón de WhatsApp (verde) */
.boton-whatsapp {
    bottom: 40px; /* Posición del botón de WhatsApp */
    background-color: #25D366; /* Verde de WhatsApp */
}

.boton-whatsapp:hover {
    background-color: #1ebe57;
}

/* Iconos dentro de los botones */
.icono-correo, .icono-whatsapp {
    width: 65px;
    height: 65px;
}

/* Animación de rebote */
@keyframes aparecerRebotar {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.boton-correo, .boton-whatsapp {
    animation: aparecerRebotar 1.2s ease-out;
}

/* Responsive (tablets y móviles) */
@media (max-width: 768px) {
    .boton-correo {
        bottom: 100px;
        right: 15px;
    }
    .boton-whatsapp {
        bottom: 45px;
        right: 15px;
    }
}

/* Ajuste para móviles pequeños */
@media (max-width: 480px) {
    .boton-correo, .boton-whatsapp {
        width: 45px;
        height: 45px;
    }
    .icono-correo, .icono-whatsapp {
        width: 45px;
        height: 45px;
    }
}
