/* ---- ESTILOS DEL MENÚ STICKY ---- */
.menu-anchors-container {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #F2F9F4 0%, #E8F5EC 50%, #F2F9F4 100%);
    z-index: 50;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-anchors {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-anchors-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.menu-anchors-wrapper::-webkit-scrollbar {
    display: none;
}

.menu-anchors ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    white-space: nowrap;
}

.menu-anchors li {
    flex-shrink: 0;
}

.menu-anchors a {
    display: block;
    padding: 18px 30px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.menu-anchors a:hover {
    color: #46AD67;
    background-color: rgba(70, 173, 103, 0.05);
}

.menu-anchors a.active {
    color: #46AD67;
    font-weight: 500;
    border-bottom-color: #46AD67;
    background-color: rgba(70, 173, 103, 0.08);
}

/* Navigation Arrows */
.menu-anchors-prev,
.menu-anchors-next {
    background: #46AD67;
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
    margin: 0 6px;
    box-shadow: 0 2px 6px rgba(70, 173, 103, 0.25);
}

.menu-anchors-prev:hover,
.menu-anchors-next:hover {
    background: #3d9558;
    box-shadow: 0 3px 10px rgba(70, 173, 103, 0.35);
    transform: scale(1.05);
}

.menu-anchors-prev:disabled,
.menu-anchors-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: 0 1px 4px rgba(70, 173, 103, 0.15);
}

.menu-anchors-prev:disabled:hover,
.menu-anchors-next:disabled:hover {
    transform: scale(1);
    background: #46AD67;
}

/* Responsive */
@media (max-width: 1400px) {
    .menu-anchors {
        width: 85%;
    }
}

@media (max-width: 1024px) {
    .menu-anchors {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .menu-anchors {
        width: 95%;
    }
    
    .menu-anchors-prev,
    .menu-anchors-next {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin: 0 5px;
    }
    
    .menu-anchors a {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .menu-anchors {
        width: 98%;
    }
    
    .menu-anchors-prev,
    .menu-anchors-next {
        width: 34px;
        height: 34px;
        font-size: 16px;
        margin: 0 4px;
    }
    
    .menu-anchors a {
        padding: 12px 16px;
        font-size: 13px;
    }
}