.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    animation: pulse 2s infinite; /* Agrega la animación */
}

.mapterrago-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* right: 20px; */
    width: 50px;
    height: 50px;
    background-color: #f3f3f3;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    animation: pulse 2s infinite; /* Agrega la animación */
}

.mapterrago-button img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Logo de WhatsApp */
.whatsapp-button img {
    width: 35px;
    height: 35px;
}
/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 15px 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


