.image-menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    cursor: pointer;
}
.image-menu-card img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    transition: transform 0.4s;
    filter: brightness(0.5);
}
.image-menu-card .image-menu-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    pointer-events: none;
    transition: color 0.3s;
    text-align: center;
}
.image-menu-card:hover img {
    transform: scale(1.4);
    filter: brightness(0.7);
}
.image-menu-card:hover .image-menu-text {
    color: #FFF;
    text-shadow: 2px 2px 2px #000000, 1px 1px 1px rgba(0, 0, 0, 1);
    font-size: 1.4rem;
}

.section-udla {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    background-color: #f5f4f4;
}
.h4-custom {
    color: #c10230;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s, text-shadow 0.3s;
}
.img-GR {
    width: 100%;
    height: 312px;
    object-fit: cover;
    --border-radius: 8px;
    filter: brightness(0.9);
    margin: 0 !important;
    padding: 0 !important;
}
.image-GR-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.GR-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #000;
    z-index: 2;
    text-align: center;
    width: 90%;
    pointer-events: none;
}
.banner {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
    
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}
.title-banner {
    position: absolute;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bolder;
    text-shadow: 2px 2px 8px #000;
    z-index: 2;
}
.subtitle-banner {
    position: absolute;
    padding-top: 5%;
    color: #fff;
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 6px #000;
    z-index: 2;
}


