﻿/* Estilos generales para los botones flotantes */
.floating-button {
    position: fixed;
    right: 20px;
    width: 64px;
    height: 64px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(173, 114, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    z-index: 1000;
}

/* Botón de llamada */
#call-button {
    bottom: 100px;
    background-color: rgba(192, 105, 188, 0.5);
}

/* Botón de WhatsApp */
#whatsapp-button {
    bottom: 20px;
    background-color: rgba(54, 204, 84, 0.5);
}

/* Efectos de hover */
.floating-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
