/**
 * Estilos base para el Menu Circular
 */

.circular-menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.circular-menu .center-button {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.circular-menu .center-button:hover {
    transform: scale(1.1);
}

.circular-menu .menu-items-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circular-menu .menu-item {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
}

.circular-menu.active .menu-item {
    opacity: 1;
    pointer-events: auto;
}

.circular-menu .menu-item:hover {
    z-index: 20;
}

.circular-menu .menu-icon svg {
    width: 24px;
    height: 24px;
}

.circular-menu .menu-label {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 30;
}

.circular-menu .menu-item:hover .menu-label {
    display: block;
}

/* Estilos para posición fija */
.circular-menu-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: auto;
    z-index: 9999;
}

/* Responsive */
@media (max-width: 768px) {
    .circular-menu {
        height: 250px;
    }
}