/* Estilos/components/floating-button.css */

.whatsapp-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    
    /* Para centrar el ícono */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Transición suave */
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    color: #FFF; /* Mantiene el color del ícono al pasar el cursor */
}

.whatsapp-float-btn i {
    font-size: 2.2rem;
    line-height: 1;
}

/* Estilos para el nuevo botón flotante del menú */

.menu-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    /* Se posiciona 95px desde abajo para quedar arriba del de WhatsApp */
    bottom: 95px; 
    right: 25px;
    background-color: var(--color-dark-alt);
    color: var(--color-primary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: transform 0.2s ease-in-out;
}

.menu-float-btn:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
    color: var(--color-light);
}

.menu-float-btn i {
    font-size: 1.8rem;
    line-height: 1;
}