﻿:root {
    --primary-color: #2DD4BF;
    --primary-dark: #14B8A6;
    --bg-light: #F0FDFA;
    --text-dark: #1E293B;
    --text-muted: #64748B;
}

#floatingMenuBtn {
    position: fixed;
    z-index: 1000;
    width: 30px;
    height: 30px;
    /*background: var(--primary-color);*/
    background: var(--primary-dark);
    border: none;
    border-radius: 50%;
    /*color: white;*/
    color: black;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

    #floatingMenuBtn:hover {
        background: var(--primary-dark);
    }

#floatingMenuPanel {
    position: fixed;
    z-index: 999;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px;
    font-family: 'Inter', sans-serif;
    overflow-y: auto;
    max-height: 80vh;
    max-width: 300px;
    min-width: 250px;
    display: none;
}

.floating-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.floating-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floating-menu-item {
    margin-bottom: 8px;
}

.floating-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 12px;
    transition: background 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

    .floating-menu-link:hover {
        background: var(--bg-light);
    }

    .floating-menu-link i {
        color: var(--primary-color);
        font-size: 18px;
    }

.floating-menu-sublist {
    margin-top: 8px;
    padding-left: 24px;
}

/* Scroll suave en menú */
#floatingMenuPanel::-webkit-scrollbar {
    width: 6px;
}

#floatingMenuPanel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}
