@charset "UTF-8";

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.title-block {
    text-align: center;
    margin-bottom: 10px;
}

.title-block .section-title {
    margin: 0 0 5px;
    font-size: 34px;
    text-transform: uppercase;
    color: var(--brand-color);
    font-weight: normal;
    font-family: 'ChunkFiveEx', sans-serif;
}

/* Botões de filtro (cores do tema antigo) */
.filter-button {
    border-radius: 30px;
    padding: 2px 24px;
    border: 1px solid #f6a525;
    color: #f6a525;
    font-family: 'Montserrat-Regular', 'Poppins', sans-serif;
    transition: all 0.15s ease;
}

.filter-button.active {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
}

.category-filters {
    position: relative;
}

/* Efeito hover nos cards de produto */
.product-card {
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
    transform: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: scale(0.96) translateY(2px);
    /* afundar/encolher levemente */
    box-shadow: none !important;
}

.product-card .overlay-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-card .overlay-zoom::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(153, 1, 0, 0.80);
    opacity: 0;
    transition: opacity 0.45s;
}

.product-card:hover .overlay-zoom {
    opacity: 1;
}

.product-card:hover .overlay-zoom::after {
    opacity: 0.80;
}

.overlay-zoom .zoom-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 400;
    box-shadow: none;
    z-index: 1;
}

.overlay-zoom .zoom-icon i {
    font-size: 28px;
    font-weight: 900;
    /* Stroke para WebKit e fallback com text-shadow (evita warning de propriedade desconhecida) */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.7);
}

/* Fade + slide para imagens (evita piscada) */
.enhanced-img {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.32s ease-in-out, transform 0.36s ease-out;
    background-color: #f9fafb;
}

.enhanced-img.is-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Desativa hover em cards marcados como no-hover (ex.: carrossel/promo) */
.no-hover,
.no-hover:hover {
    transform: none !important;
    box-shadow: none !important;
}

.no-hover .overlay-zoom,
.no-hover:hover .overlay-zoom,
.no-hover .overlay-zoom::after,
.no-hover:hover .overlay-zoom::after {
    opacity: 0 !important;
    transition: none !important;
}

/* Título dos produtos */
.product-name {
    font-size: 20px;
    font-family: 'ChunkFiveEx', sans-serif;
    color: #f6a525;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    color: var(--brand-color);
    font-family: 'Montserrat-Bold', 'Montserrat', sans-serif;
}

/* Overlay texto promo */
.promo-overlay-bottom {
    position: absolute;
    inset: auto 0 0 0;
    /* prende no rodapé do ratio */
    padding: 4px 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: 2;
    text-align: left;
}

.promo-overlay-bottom .promo-name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.promo-overlay-bottom .promo-price {
    margin: 2px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #ffe18a;
}

/* Carrossel de promoções */
.promo-carousel {
    margin: 0 -6px;
}

.promo-carousel .promo-slide {
    padding: 6px;
}

.promo-carousel .ratio {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
}

.promo-carousel .card {
    height: 100%;
}

.promo-carousel .ratio>img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-block {
    background: #F6A525;
    border-radius: 0;
    padding: 16px 18px;
    color: #000;
    font-family: 'Montserrat-Light', 'Montserrat', sans-serif;
}

.footer_ttl {
    text-transform: uppercase;
    font-family: 'ChunkFiveEx';
    font-size: 18px;
    margin-top: 30px;
}

.footer-block h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: 0.5px;
}

.footer-block p {
    margin-bottom: 8px;
    color: #000;
}

.footer-block .week_day,
.footer-block .week_time,
.footer-block a {
    color: #000000;
    font-family: 'Montserrat-Light', 'Montserrat', sans-serif;
}

.footer-schedule .week_row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 14px;
}

.footer-schedule .week_row:last-child {
    border-bottom: none;
}

.footer-schedule .week_day {
    font-weight: 700;
    color: #000000;
}

.footer-schedule .week_time {
    font-weight: 600;
    color: #000000;
}

.promo-carousel .slick-dots li button:before {
    font-size: 9px;
    color: #990100;
}

.promo-carousel .slick-dots li.slick-active button:before {
    color: #f6a525;
}

.promo-carousel .slick-arrow {
    z-index: 1;
}

.promo-carousel .slick-prev:before,
.promo-carousel .slick-next:before {
    color: #990100;
    font-size: 20px;
}

@media (max-width: 576px) {
    .title-block {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .title-block .section-title {
        margin: 0 0 6px;
    }

    .category-filters {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 4px 28px 8px 4px;
        gap: 8px !important;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .category-filters::after {
        content: "";
        position: sticky;
        right: 0;
        top: 0;
        width: 26px;
        min-width: 26px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .category-filters .filter-button {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
    }
}

@media only screen and (max-width: 576px) {
    .section {
        padding-top: 0;
    }

    .padding-20 {
        padding: 10px;
    }
}

/* Destaque Marmitas */
.marmita-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    margin: 10px 0 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffe8d2, #ffd1a3);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.marmita-hero h3 {
    margin: 0 0 4px;
    font-weight: 700;
    color: #8a3b00;
}

.marmita-hero p {
    margin: 0;
    color: #5b371f;
    font-size: 0.95rem;
}