.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Botones al lado izquierdo */
    display: flex;
    gap: 10px; /* Espacio entre los botones */
    z-index: 1000; /* Asegura que esté sobre todos los elementos */
}

.floating-button {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: #25D366; /* Color de WhatsApp */
    display: flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Cambios de color al hacer hover */
.floating-button:hover {
    background-color: #0056b3;
}

.whatsapp-button:hover {
    background-color: #1da851;
}
