﻿
.menu-page {
    background: #fff8ef;
    min-height: calc(100vh - 74px);
    padding: 28px 0 56px;

}

.menu-hero {
    background: linear-gradient(135deg, #2b1a12 0%, #4a2412 55%, #c2410c 100%);
    padding: 34px 28px;
    color: #fff;
    box-shadow: 0 18px 45px rgba(43, 26, 18, .22);
    border-radius: 15px; /* Radio de 15px solicitado */
    position: relative;
    overflow: hidden;
    margin-top: 0vw;
    display: flow-root;
}
  
    .menu-hero::after {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 220px;
        height: 220px;
        background: rgba(255, 255, 255, .10);
        border-radius: 50%;
    }

.menu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 237, 213, .14);
    border: 1px solid rgba(255, 237, 213, .22);
    color: #fed7aa;
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 14px;
}

.menu-hero h1 {
    font-weight: 900;
    letter-spacing: -.7px;
    margin-bottom: 8px;
}

.menu-hero p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
    font-size: 1.05rem;
}

.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px 2px 4px;
    scrollbar-width: none;
    flex-wrap: wrap;
}

    .category-pills::-webkit-scrollbar {
        display: none;
    }

.category-pill {
    white-space: nowrap;
    border: 1px solid rgba(194, 65, 12, .16);
    background: #fff3df;
    color: #4a2412;
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(43, 26, 18, .06);
}

    .category-pill.active,
    .category-pill:hover {
        background: #ea580c;
        color: #fff;
        border-color: #ea580c;
    }

.menu-section-title {
    color: #2b1a12;
    font-weight: 900;
    letter-spacing: -.3px;
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
}

    .menu-section-title::after {
        content: '';
        position: absolute;
        bottom: -7px;
        left: 0;
        width: 62px;
        height: 4px;
        background-color: #ea580c;
        border-radius: 999px;
    }

.food-card {
    background-color: #fffdf8;
    border: 1px solid rgba(120, 72, 28, .12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(43, 26, 18, .10);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .food-card:hover {
        transform: translateY(-4px);
        border-color: rgba(234, 88, 12, .28);
        box-shadow: 0 18px 42px rgba(43, 26, 18, .16);
    }

.food-img-container {
    width: 190px;
    min-width: 190px;
    background-color: #f3e7d8;
}

.food-img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.food-title {
    font-weight: 900;
    color: #2b1a12;
    letter-spacing: -.2px;
    font-size: 1.16rem;
    margin-bottom: 8px;
}

.food-description {
    color: #6b5a4a;
    font-size: .95rem;
    line-height: 1.48;
}

.food-price {
    font-weight: 900;
    color: #2b1a12;
    font-size: 1rem;
}
.food-img-container.drink-img {
    background-color: #f8f8f8;
}

    .food-img-container.drink-img .food-img {
        object-fit: contain;
    }
.price-amount {
    color: #15803d;
    font-size: 1.15rem;
}

.btn-order-food {
    background-color: #ea580c;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 8px 17px;
    font-size: .92rem;
    font-weight: 800;
    transition: all .2s ease;
    box-shadow: 0 10px 20px rgba(234, 88, 12, .22);
}

    .btn-order-food:hover {
        background-color: #c2410c;
        color: #ffffff;
        transform: translateY(-1px);
    }

@media (max-width: 575.98px) {
    .menu-page {
        padding-top: 26px;
    }



    .food-img-container {
        width: 100%;
        min-width: 100%;
    }

    .food-img {
        min-height: 210px;
        max-height: 240px;
    }

    .food-card .card-body {
        padding: 20px !important;
    }

    .food-card-footer {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px;
    }

    .btn-order-food {
        width: 100%;
    }
}


