/*****************************whatsapp*/

/* Botón flotante de WhatsApp */
.alcansan-whatsapp-float {
    position: fixed;
    left: 20px; /* A la izquierda */
    bottom: 20px; /* Distancia desde abajo */
    background-color: #269D99; /* Color oficial de WhatsApp */
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

.alcansan-whatsapp-float:hover {
    background-color: #269D90;
}

.alcansan-whatsapp-float i {
    font-size: 24px;
}

.alcansan-whatsapp-float span {
    font-weight: bold;
    font-size: 14px;
}

/*************************/


