.sticky-menu-section {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 200px;
    height: fit-content;
    z-index: 10;
}

.menu-content {
    padding-left: 2rem;
}

@media (max-width: 991.98px) {
    .sticky-content {
        position: relative;
        top: auto;
    }

    .menu-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

.day-menu {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.menu-option {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-option:hover {
    transform: translateY(-3px);
    border-color: #2c3567 !important;
}

/* Hover para imágenes de los cards del menú */
.menu-card img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(44, 53, 103, 0.15);
}

/* ===== Columna derecha: overlay estilo tarjeta sobre imagen ===== */
.valores-overlay {
    position: relative;
    isolation: isolate; /* asegura capas internas sobre la imagen */
}

/* Gradiente oscuro sutil desde la izquierda para mejorar contraste */
.valores-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 65%);
    border-radius: 0.5rem;
    z-index: 1;
    pointer-events: none;
}

/* Tarjeta flotante */
.valores-floating-card {
    position: absolute;
    top: 7%;
    left: 4%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 2; /* sobre el gradiente y la imagen */
    pointer-events: none; /* no bloquear hover del zoom de la imagen */
}

.valores-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary); /* tono cálido como en el ejemplo */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.valores-icon-badge i {
    font-size: 1.5rem; /* ~24px */
    color: #ffffff;
}

/* Mantener animación existente: no tocar .menu-card:hover img */

/* Responsivo */
@media (max-width: 1199.98px) {
    .valores-floating-card { top: 10%; left: 6%; max-width: 320px; }
}

@media (max-width: 991.98px) {
    .valores-overlay::before { background: linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0) 65%); }
    .valores-floating-card { position: relative; top: auto; left: auto; margin-top: -60px; max-width: 92%; }
}

@media (max-width: 575.98px) {
    .valores-floating-card { margin-top: -40px; padding: 1rem !important; }
    .valores-icon-badge { width: 48px; height: 48px; }
    .valores-icon-badge i { font-size: 1.25rem; }
}

/* Responsive font-size para el título de Nutrición */
.nutricion-title {
    color: #2c3567;
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 575.98px) {
    .nutricion-title {
        font-size: 2rem;
    }

    .nutricion-proposito-title {
        text-align: center !important;
        font-size: 2rem;
    }
}

.nutricion-proposito-title {
    text-align: center;
}