.whatsapp-container {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe5b;
}

.whatsapp-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    right: 0;
    /* 🔹 Menú se despliega hacia la izquierda */
    width: 250px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-header {
    background: #25D366;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-option {
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: black;
    transition: background 0.2s;
}

.whatsapp-option:hover {
    background: #f1f1f1;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}