/* =========================================================
   MC2 DELIVERY
   HOME
========================================================= */


/* =========================================================
   CONTAINER
========================================================= */

.mc2-home-container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

    padding-left: 24px;

    padding-right: 24px;

    box-sizing: border-box;

}


/* =========================================================
   HOME
========================================================= */

.mc2-home {

    width: 100%;

    background: #ffffff;

}


/* =========================================================
   HERO
========================================================= */

.mc2-hero {

    padding-top: 42px;

    padding-bottom: 28px;

}


.mc2-hero h1 {

    margin: 0 0 10px;

    font-size: 32px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.4px;

    color: #222222;

}


.mc2-hero p {

    margin: 0;

    font-size: 16px;

    line-height: 1.5;

    color: #666666;

}


/* =========================================================
   SEÇÕES
========================================================= */

.mc2-categories,
.mc2-famous,
.mc2-restaurants {

    width: 100%;

    padding-top: 20px;

    padding-bottom: 32px;

}


/* =========================================================
   CABEÇALHO DAS SEÇÕES
========================================================= */

.mc2-section-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;

}


.mc2-section-header h2 {

    margin: 0;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 700;

    color: #222222;

}


.mc2-see-more {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    flex-shrink: 0;

    color: #ea1d2c;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

}


.mc2-see-more:hover {

    text-decoration: underline;

}


.mc2-see-more span {

    font-size: 18px;

    line-height: 1;

}


/* =========================================================
   CATEGORIAS
========================================================= */

.mc2-categories-wrapper {
    position: relative;
    width: 100%;
}


/* =========================================================
   LISTA
========================================================= */

.mc2-categories-list {
    display: flex;
    gap: 14px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 15px 45px 15px;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    cursor: grab;
}

.mc2-categories-list::-webkit-scrollbar {
    display: none;
}

.mc2-categories-list.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}


/* =========================================================
   CATEGORIA
========================================================= */

.mc2-category {
    flex: 0 0 auto;

    width: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 10px;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 14px;

    color: #333;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    text-align: center;

    scroll-snap-align: start;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.mc2-category:hover {
    transform: translateY(-2px);

    border-color: #e5e5e5;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}


/* =========================================================
   ÍCONE
========================================================= */

.mc2-category-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d3e3acb3;

    font-size: 27px;

    flex-shrink: 0;
}


/* =========================================================
   SETAS
========================================================= */

.mc2-category-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e5e5;
    border-radius: 50%;

    background: #fff;

    color: #333;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);

    transition:
        opacity .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.mc2-category-arrow:hover {
    transform: translateY(-50%) scale(1.05);

    box-shadow: 0 5px 16px rgba(0, 0, 0, .18);
}

.mc2-category-arrow-left {
    left: -10px;
}

.mc2-category-arrow-right {
    right: -10px;
}

.mc2-category-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .mc2-categories-list {
        gap: 10px;

        margin-left: -12px;
        margin-right: -12px;

        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 10px;

        cursor: grab;
    }


    .mc2-category {
        width: 92px;

        padding: 12px 8px;

        border-radius: 12px;

        font-size: 13px;
    }


    .mc2-category-icon {
        width: 80px;
        height: 80px;

        font-size: 25px;
    }


    /* No celular usamos o gesto de arrastar */

    .mc2-category-arrow {
        display: none;
    }

}


/* =========================================================
   GRID DE RESTAURANTES
========================================================= */

.mc2-restaurant-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100%;

}


/* =========================================================
   CARD
========================================================= */

.mc2-restaurant-card {

    display: flex;

    flex-direction: row;

    align-items: stretch;

    width: 100%;

    min-width: 0;

    min-height: 150px;

    margin: 0;

    padding: 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;

}


.mc2-restaurant-card:hover {

    transform: translateY(-2px);

    border-color: #e5e5e5;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.08);

}


/* =========================================================
   LOGO
========================================================= */

.mc2-restaurant-image {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 145px;

    width: 145px;

    min-width: 145px;

    height: auto;

    min-height: 150px;

    margin: 0;

    padding: 0;

    border: 0;

    overflow: hidden;

    background: #f5f5f5;

    text-decoration: none;

}


/*
   A LOGO OCUPA TODA A ALTURA DO CARD.

   NÃO EXISTE PADDING.

   NÃO EXISTE BORDA ENTRE A LOGO
   E O RESTANTE DO CARD.
*/

.mc2-restaurant-image img {

    display: block;

    width: 100%;

    height: 100%;

    min-width: 100%;

    min-height: 150px;

    margin: 0;

    padding: 0;

    border: 0;

    object-fit: cover;

}


/* =========================================================
   PLACEHOLDER
========================================================= */

.mc2-restaurant-placeholder {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    min-height: 150px;

    margin: 0;

    padding: 0;

    font-size: 40px;

    background: #f5f5f5;

}


/* =========================================================
   CONTEÚDO
========================================================= */

.mc2-restaurant-content {

    display: flex;

    flex: 1 1 auto;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    margin: 0;

    padding: 16px;

    box-sizing: border-box;

}


/* =========================================================
   NOME
========================================================= */

.mc2-restaurant-name {

    display: block;

    width: 100%;

    margin: 0 0 7px;

    padding: 0;

    color: #222222;

    font-size: 17px;

    line-height: 1.25;

    font-weight: 700;

    text-decoration: none;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}


.mc2-restaurant-name:hover {

    color: #ea1d2c;

}


/* =========================================================
   CATEGORIA
========================================================= */

.mc2-restaurant-category {

    width: 100%;

    margin: 0 0 10px;

    padding: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.3;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* =========================================================
   STATUS
========================================================= */

.mc2-restaurant-status {

    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;

    padding: 0;

    color: #333333;

    font-size: 13px;

    line-height: 1.3;

}


.mc2-status-dot {

    display: inline-block;

    width: 8px;

    height: 8px;

    flex: 0 0 8px;

    background: #18a558;

    border-radius: 50%;

}


/* =========================================================
   FILTROS
========================================================= */

.mc2-filters {

    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    margin: 0 0 20px;

    padding: 2px 2px 7px;

    overflow-x: auto;

    scrollbar-width: none;

}


.mc2-filters::-webkit-scrollbar {

    display: none;

}


.mc2-filter-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    flex: 0 0 auto;

    min-height: 40px;

    padding: 0 15px;

    border: 1px solid #dddddd;

    border-radius: 20px;

    background: #ffffff;

    color: #333333;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.mc2-filter-button:hover {

    background: #f8f8f8;

    border-color: #cccccc;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04);

}


/* =========================================================
   ESTADO VAZIO
========================================================= */

.mc2-empty {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 100%;

    padding: 60px 20px;

    text-align: center;

    color: #777777;

    box-sizing: border-box;

}


.mc2-empty-icon {

    margin-bottom: 12px;

    font-size: 42px;

}


.mc2-empty p {

    margin: 0;

    font-size: 15px;

}


/* =========================================================
   DESKTOP GRANDE
========================================================= */

@media (min-width: 1400px) {

    .mc2-home-container {

        max-width: 1320px;

    }


    .mc2-restaurant-grid {

        gap: 20px;

    }


    .mc2-restaurant-card {

        min-height: 155px;

    }


    .mc2-restaurant-image {

        flex-basis: 150px;

        width: 150px;

        min-width: 150px;

        min-height: 155px;

    }


    .mc2-restaurant-image img {

        min-height: 155px;

    }


    .mc2-restaurant-placeholder {

        min-height: 155px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .mc2-home-container {

        max-width: 100%;

    }


    .mc2-restaurant-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   TABLET PEQUENO
========================================================= */

@media (max-width: 800px) {

    .mc2-home-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .mc2-restaurant-grid {

        gap: 14px;

    }


    .mc2-restaurant-card {

        min-height: 140px;

    }


    .mc2-restaurant-image {

        flex: 0 0 120px;

        width: 120px;

        min-width: 120px;

        min-height: 140px;

    }


    .mc2-restaurant-image img {

        min-height: 140px;

    }


    .mc2-restaurant-placeholder {

        min-height: 140px;

    }


    .mc2-restaurant-content {

        padding: 14px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .mc2-home-container {

        padding-left: 16px;

        padding-right: 16px;

    }


    /* =====================================================
       HERO
    ===================================================== */

    .mc2-hero {

        padding-top: 30px;

        padding-bottom: 20px;

    }


    .mc2-hero h1 {

        font-size: 25px;

        line-height: 1.25;

    }


    .mc2-hero p {

        font-size: 15px;

    }


    /* =====================================================
       SEÇÕES
    ===================================================== */

    .mc2-categories,
    .mc2-famous,
    .mc2-restaurants {

        padding-top: 16px;

        padding-bottom: 24px;

    }


    .mc2-section-header {

        margin-bottom: 15px;

    }


    .mc2-section-header h2 {

        font-size: 21px;

    }


    /* =====================================================
       CATEGORIAS
    ===================================================== */

    .mc2-categories-list {

        gap: 9px;

        margin-right: -16px;

        width: calc(100% + 16px);

    }


    .mc2-category {

        min-height: 40px;

        padding: 0 14px;

        font-size: 13px;

    }


    .mc2-category-icon {

        font-size: 18px;

    }


    /* =====================================================
       FILTROS
    ===================================================== */

    .mc2-filters {

        margin-right: -16px;

        width: calc(100% + 16px);

        gap: 8px;

    }


    .mc2-filter-button {

        min-height: 38px;

        padding: 0 13px;

        font-size: 13px;

    }


    /* =====================================================
       UM RESTAURANTE POR LINHA
    ===================================================== */

    .mc2-restaurant-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    /* =====================================================
       CARD
    ===================================================== */

    .mc2-restaurant-card {

        min-height: 130px;

    }


    /* =====================================================
       LOGO
    ===================================================== */

    .mc2-restaurant-image {

        flex: 0 0 115px;

        width: 115px;

        min-width: 115px;

        min-height: 130px;

    }


    .mc2-restaurant-image img {

        min-height: 130px;

    }


    .mc2-restaurant-placeholder {

        min-height: 130px;

        font-size: 34px;

    }


    /* =====================================================
       CONTEÚDO
    ===================================================== */

    .mc2-restaurant-content {

        padding: 13px;

    }


    .mc2-restaurant-name {

        font-size: 16px;

        margin-bottom: 6px;

    }


    .mc2-restaurant-category {

        margin-bottom: 8px;

        font-size: 13px;

    }


    .mc2-restaurant-status {

        font-size: 12px;

    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 400px) {

    .mc2-home-container {

        padding-left: 12px;

        padding-right: 12px;

    }


    .mc2-hero h1 {

        font-size: 23px;

    }


    .mc2-restaurant-image {

        flex: 0 0 100px;

        width: 100px;

        min-width: 100px;

    }


    .mc2-restaurant-content {

        padding: 11px;

    }


    .mc2-restaurant-name {

        font-size: 15px;

    }


    .mc2-restaurant-category {

        font-size: 12px;

    }


    .mc2-restaurant-status {

        font-size: 11px;

    }

}

/* =========================================================
   MC2 DELIVERY
   INTEGRAÇÃO COM NAVBAR + FOOTER
========================================================= */


/* =========================================================
   ÁREA PRINCIPAL DA HOME
========================================================= */

.mc2-home {

    width: 100%;

    min-height: 100%;

    background: #ffffff;

    box-sizing: border-box;

}


/*
   Mantém o conteúdo centralizado e alinhado
   com a navbar e o footer.
*/

.mc2-home-container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;

    padding-left: 24px;

    padding-right: 24px;

    box-sizing: border-box;

}


/* =========================================================
   NAVBAR
========================================================= */

/*
   A navbar deve ocupar toda a largura da tela.

   O home.css não estiliza os elementos internos
   da navbar; apenas evita que o conteúdo da Home
   fique colado nela.
*/

.mc2-home-container:first-child {

    box-sizing: border-box;

}


/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.site-content {

    width: 100%;

    min-width: 0;

    background: #ffffff;

}


/*
   Quando a Home estiver dentro do layout público,
   remove qualquer espaçamento indesejado.
*/

.public-layout .site-content {

    width: 100%;

    padding: 0;

    margin: 0;

}


/* =========================================================
   HOME + NAVBAR
========================================================= */

/*
   Espaçamento visual entre a navbar e o Hero.

   Não adicionamos margin-top global para evitar
   conflito caso a navbar seja sticky/fixed.
*/

.mc2-home .mc2-hero {

    width: 100%;

}


/* =========================================================
   HOME + FOOTER
========================================================= */

/*
   Garante que a última seção não fique colada
   visualmente ao footer.
*/

.mc2-home .mc2-restaurants {

    padding-bottom: 45px;

}


/* =========================================================
   FOOTER
========================================================= */

/*
   O footer pertence ao layout geral.

   Caso o footer seja carregado pelo main.php,
   ele deve ficar fora do .mc2-home.
*/

.mc2-footer {

    width: 100%;

    margin-top: 0;

    background: #f7f7f7;

    box-sizing: border-box;

}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 700px) {

    .mc2-home-container {

        width: 100%;

        padding-left: 16px;

        padding-right: 16px;

    }


    .mc2-home .mc2-restaurants {

        padding-bottom: 32px;

    }

}


@media (max-width: 400px) {

    .mc2-home-container {

        padding-left: 12px;

        padding-right: 12px;

    }

}

/* =========================================================
   MC2 DELIVERY
   NAVBAR
========================================================= */

.site-navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    box-sizing: border-box;

}


.navbar-container {

    display: flex;

    align-items: center;

    gap: 22px;

    width: 100%;

    max-width: 1320px;

    min-height: 72px;

    margin: 0 auto;

    padding: 0 24px;

    box-sizing: border-box;

}


/* =========================================================
   LOGO
========================================================= */

.navbar-logo {

    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    color: #ea1d2c;

    font-size: 22px;

    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

}


.navbar-logo:hover {

    color: #d91827;

}


/* =========================================================
   LINKS
========================================================= */

.navbar-links {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-shrink: 0;

}


.navbar-link {

    display: inline-flex;

    align-items: center;

    min-height: 40px;

    color: #333333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease;

}


.navbar-link:hover {

    color: #ea1d2c;

}


/* =========================================================
   BUSCA
========================================================= */

.navbar-search {

    display: flex;

    align-items: center;

    flex: 1 1 auto;

    min-width: 180px;

    max-width: 420px;

    height: 44px;

    margin-left: auto;

    padding: 0 15px;

    background: #f7f7f7;

    border: 1px solid #eeeeee;

    border-radius: 24px;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.navbar-search:focus-within {

    background: #ffffff;

    border-color: #dddddd;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05);

}


.navbar-search-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    margin-right: 8px;

    font-size: 16px;

}


.navbar-search input {

    width: 100%;

    min-width: 0;

    height: 100%;

    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #222222;

    font-family: inherit;

    font-size: 14px;

}


.navbar-search input::placeholder {

    color: #888888;

}


/* =========================================================
   ENDEREÇO
========================================================= */

.navbar-address {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    min-height: 44px;

    padding: 5px 10px;

    border: 0;

    background: transparent;

    color: #333333;

    font-family: inherit;

    cursor: pointer;

    text-align: left;

    border-radius: 8px;

}


.navbar-address:hover {

    background: #f7f7f7;

}


.navbar-address-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

}


.navbar-address-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;

}


.navbar-address-text small {

    color: #777777;

    font-size: 11px;

    line-height: 1.2;

}


.navbar-address-text strong {

    max-width: 150px;

    overflow: hidden;

    color: #222222;

    font-size: 13px;

    line-height: 1.3;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* =========================================================
   AÇÕES
========================================================= */

.navbar-actions {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

}


.navbar-login {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 12px;

    color: #333333;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    border-radius: 20px;

    white-space: nowrap;

}


.navbar-login:hover {

    background: #f7f7f7;

    color: #ea1d2c;

}


/* =========================================================
   CARRINHO
========================================================= */

.navbar-cart {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 0 15px;

    background: #ea1d2c;

    color: #ffffff;

    border-radius: 22px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.navbar-cart:hover {

    background: #d91827;

    color: #ffffff;

    transform: translateY(-1px);

}


.navbar-cart-icon {

    font-size: 16px;

    line-height: 1;

}


.navbar-cart-text {

    line-height: 1;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    width: 100%;

    margin-top: 60px;

    background: #f7f7f7;

    border-top: 1px solid #eeeeee;

}


.footer-container {

    width: 100%;

    max-width: 1320px;

    margin: 0 auto;

    padding: 45px 24px 25px;

    box-sizing: border-box;

}


/* =========================================================
   COLUNAS
========================================================= */

.footer-columns {

    display: grid;

    grid-template-columns:
        minmax(220px, 1.4fr)
        repeat(3, minmax(160px, 1fr));

    gap: 45px;

}


/* =========================================================
   MARCA
========================================================= */

.footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-logo {

    display: inline-block;

    margin-bottom: 12px;

    color: #ea1d2c;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.2;

    text-decoration: none;

}


.footer-brand p {

    max-width: 230px;

    margin: 0;

    color: #777777;

    font-size: 14px;

    line-height: 1.5;

}


/* =========================================================
   COLUNA
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h3 {

    margin: 0 0 16px;

    color: #222222;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.3;

}


.footer-column a {

    margin-bottom: 10px;

    color: #666666;

    font-size: 14px;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease;

}


.footer-column a:hover {

    color: #ea1d2c;

}


/* =========================================================
   DIVISOR
========================================================= */

.footer-divider {

    width: 100%;

    height: 1px;

    margin: 32px 0;

    background: #e3e3e3;

}


/* =========================================================
   EMPRESA
========================================================= */

.footer-company {

    display: flex;

    flex-direction: column;

    gap: 7px;
    
    text-align: center;

}


.footer-social-title {

    margin-bottom: 5px;

    color: #222222;

    font-size: 15px;

    font-weight: 700;

}


.footer-company p {

    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.5;

}


/* =========================================================
   LINKS LEGAIS
========================================================= */

.footer-legal {

    display: flex;

    align-items: center !important;

    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 20px;

}


.footer-legal a {

    color: #666666;

    font-size: 13px;

    text-decoration: none;

}


.footer-legal a:hover {

    color: #ea1d2c;

    text-decoration: underline;

}


/* =========================================================
   RESPONSIVIDADE NAVBAR
========================================================= */

@media (max-width: 1100px) {

    .navbar-container {

        gap: 14px;

    }


    .navbar-links {

        gap: 12px;

    }


    .navbar-search {

        max-width: 300px;

    }


    .navbar-address-text strong {

        max-width: 120px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .navbar-container {

        min-height: 64px;

        padding: 0 18px;

    }


    .navbar-links {

        display: none;

    }


    .navbar-search {

        max-width: none;

    }


    .navbar-address {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar-container {

        gap: 10px;

        min-height: 62px;

        padding: 0 16px;

    }


    .navbar-logo {

        font-size: 19px;

    }


    .navbar-search {

        height: 40px;

        padding: 0 11px;

    }


    .navbar-search-icon {

        margin-right: 5px;

        font-size: 14px;

    }


    .navbar-search input {

        font-size: 13px;

    }


    .navbar-actions {

        gap: 4px;

    }


    .navbar-login {

        min-height: 38px;

        padding: 0 8px;

        font-size: 13px;

    }


    .navbar-cart {

        width: 40px;

        height: 40px;

        min-height: 40px;

        padding: 0;

        border-radius: 50%;

    }


    .navbar-cart-text {

        display: none;

    }


    .navbar-cart-icon {

        font-size: 17px;

    }


    /* =====================================================
       FOOTER MOBILE
    ===================================================== */

    .site-footer {

        margin-top: 40px;

    }


    .footer-container {

        padding: 35px 16px 22px;

    }


    .footer-columns {

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-column h3 {

        font-size: 15px;

    }


    .footer-column a {

        font-size: 13px;

    }


    .footer-legal {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 430px) {

    .navbar-container {

        padding: 0 12px;

    }


    .navbar-logo {

        font-size: 17px;

    }


    .navbar-search {

        flex: 1;

        min-width: 0;

    }


    .navbar-login {

        display: none;

    }


    .footer-columns {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }

}

/* =========================================================
   MC2 DELIVERY
   MOBILE APP NAVIGATION
========================================================= */


/* =========================================================
   BOTTOM NAV
   OCULTO NO DESKTOP
========================================================= */

.mobile-bottom-nav {

    display: none;

}


/* =========================================================
   BUSCA MOBILE
========================================================= */

.mobile-search-panel {

    display: none;

}


/* =========================================================
   PERFIL MOBILE
========================================================= */

.mobile-profile-panel {

    display: none;

}


.mobile-profile-overlay {

    display: none;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


    /* =====================================================
       NAVBAR
    ===================================================== */

    .site-navbar {

        position: sticky;

        top: 0;

        z-index: 1000;

        background: #ffffff;

        box-shadow:
            0 1px 6px rgba(0, 0, 0, 0.05);

    }


    .navbar-container {

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 10px;

        width: 100%;

        min-height: 62px;

        padding: 0 16px;

        box-sizing: border-box;

    }


    /* =====================================================
       LOGO
    ===================================================== */

    .navbar-logo {

        flex-shrink: 0;

        font-size: 18px;

        font-weight: 800;

    }


    /* =====================================================
       ESCONDER LINKS
    ===================================================== */

    .navbar-links {

        display: none;

    }


    /* =====================================================
       ESCONDER BUSCA DO TOPO
    ===================================================== */

    .navbar-search {

        display: none;

    }


    /* =====================================================
       ENDEREÇO
       AGORA APARECE NO MOBILE
    ===================================================== */

    .navbar-address {

        display: flex;

        flex: 1;

        align-items: center;

        justify-content: flex-end;

        gap: 7px;

        min-width: 0;

        min-height: 44px;

        padding: 4px 0;

        background: transparent;

        border: 0;

    }


    .navbar-address-icon {

        flex-shrink: 0;

        font-size: 17px;

    }


    .navbar-address-text {

        min-width: 0;

        max-width: 145px;

    }


    .navbar-address-text small {

        display: block;

        font-size: 10px;

        line-height: 1.1;

    }


    .navbar-address-text strong {

        display: block;

        max-width: 145px;

        font-size: 12px;

        line-height: 1.25;

    }


    /* =====================================================
       ESCONDER AÇÕES DO DESKTOP
    ===================================================== */

    .navbar-actions {

        display: none;

    }


    /* =====================================================
       BOTTOM NAVIGATION
    ===================================================== */

    .mobile-bottom-nav {

        position: fixed;

        right: 0;

        bottom: 0;

        left: 0;

        z-index: 2000;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        width: 100%;

        height: 66px;

        padding:
            6px
            8px
            calc(6px + env(safe-area-inset-bottom));

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 -3px 15px rgba(0, 0, 0, 0.08);

        box-sizing: border-box;

    }


    /* =====================================================
       ITEM
    ===================================================== */

    .mobile-bottom-item {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        width: 100%;

        min-width: 0;

        padding: 4px;

        border: 0;

        outline: 0;

        background: transparent;

        color: #777777;

        font-family: inherit;

        text-decoration: none;

        cursor: pointer;

        -webkit-tap-highlight-color: transparent;

    }


    .mobile-bottom-icon {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 25px;

        height: 25px;

        font-size: 19px;

        line-height: 1;

    }


    .mobile-bottom-label {

        font-size: 10px;

        line-height: 1.2;

        font-weight: 600;

        white-space: nowrap;

    }


    /* =====================================================
       ITEM ATIVO
    ===================================================== */

    .mobile-bottom-item.active {

        color: #ea1d2c;

    }


    .mobile-bottom-item:active {

        transform: scale(0.96);

    }


    /* =====================================================
       BUSCA MOBILE
    ===================================================== */

    .mobile-search-panel {

        position: fixed;

        top: 62px;

        right: 0;

        left: 0;

        z-index: 1900;

        display: block;

        padding: 10px 16px;

        background: #ffffff;

        border-bottom: 1px solid #eeeeee;

        box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.08);

        transform:
            translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;

        box-sizing: border-box;

    }


    .mobile-search-panel.open {

        transform:
            translateY(0);

        opacity: 1;

        pointer-events: auto;

    }


    .mobile-search-panel-inner {

        width: 100%;

    }


    .mobile-search-form {

        display: flex;

        align-items: center;

        gap: 8px;

        width: 100%;

        height: 44px;

        padding: 0 13px;

        background: #f7f7f7;

        border: 1px solid #eeeeee;

        border-radius: 23px;

        box-sizing: border-box;

    }


    .mobile-search-form span {

        flex-shrink: 0;

        font-size: 16px;

    }


    .mobile-search-form input {

        width: 100%;

        height: 100%;

        min-width: 0;

        padding: 0;

        border: 0;

        outline: 0;

        background: transparent;

        font-family: inherit;

        font-size: 14px;

        color: #222222;

    }


    /* =====================================================
       PERFIL
    ===================================================== */

    .mobile-profile-overlay {

        position: fixed;

        inset: 0;

        z-index: 2100;

        display: block;

        background: rgba(0, 0, 0, 0.35);

        opacity: 0;

        pointer-events: none;

        transition:
            opacity 0.25s ease;

    }


    .mobile-profile-overlay.open {

        opacity: 1;

        pointer-events: auto;

    }


    .mobile-profile-panel {

        position: fixed;

        right: 0;

        bottom: 0;

        left: 0;

        z-index: 2200;

        display: block;

        padding: 0;

        background: #ffffff;

        border-radius:
            18px
            18px
            0
            0;

        box-shadow:
            0 -8px 30px rgba(0, 0, 0, 0.15);

        transform:
            translateY(105%);

        transition:
            transform 0.3s ease;

    }


    .mobile-profile-panel.open {

        transform:
            translateY(0);

    }


    .mobile-profile-panel-content {

        padding:
            18px
            16px
            calc(82px + env(safe-area-inset-bottom));

    }


    /* =====================================================
       HEADER PERFIL
    ===================================================== */

    .mobile-profile-header {

        display: flex;

        align-items: center;

        justify-content: space-between;

        margin-bottom: 15px;

    }


    .mobile-profile-header strong {

        color: #222222;

        font-size: 18px;

        font-weight: 700;

    }


    .mobile-profile-header button {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 34px;

        height: 34px;

        padding: 0;

        border: 0;

        border-radius: 50%;

        background: #f5f5f5;

        color: #333333;

        font-size: 24px;

        line-height: 1;

        cursor: pointer;

    }


    /* =====================================================
       OPÇÕES PERFIL
    ===================================================== */

    .mobile-profile-menu {

        display: flex;

        flex-direction: column;

        gap: 6px;

    }


    .mobile-profile-menu-item {

        display: flex;

        align-items: center;

        gap: 13px;

        min-height: 52px;

        padding: 0 12px;

        border-radius: 10px;

        color: #333333;

        text-decoration: none;

        transition:
            background 0.2s ease;

    }


    .mobile-profile-menu-item:hover {

        background: #f7f7f7;

    }


    .mobile-profile-menu-item span {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 32px;

        font-size: 19px;

    }


    .mobile-profile-menu-item strong {

        font-size: 14px;

        font-weight: 600;

    }


    .mobile-profile-logout {

        color: #ea1d2c;

    }


    /* =====================================================
       ESPAÇO PARA O BOTTOM MENU
    ===================================================== */

    body {

        padding-bottom:
            66px;

    }


    .site-footer {

        margin-bottom: 66px;

    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 400px) {

    .navbar-container {

        padding-left: 12px;

        padding-right: 12px;

    }


    .navbar-logo {

        font-size: 17px;

    }


    .navbar-address-text {

        max-width: 125px;

    }


    .navbar-address-text strong {

        max-width: 125px;

    }


    .mobile-bottom-nav {

        height: 64px;

    }


    .mobile-bottom-icon {

        font-size: 18px;

    }


    .mobile-bottom-label {

        font-size: 9px;

    }

}

/* =========================================================
   BANNERS DA HOME
========================================================= */

.mc2-home-banner-section {

    width: 100%;

    padding: 24px 0;

}


.mc2-home-banner {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 220px;

    overflow: hidden;

    border-radius: 18px;

    text-decoration: none;

    box-sizing: border-box;

    background:
        linear-gradient(
            105deg,
            #ea1d2c 0%,
            #f53b48 50%,
            #ff6872 100%
        );

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.mc2-home-banner:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);

}


/* =========================================================
   CONTEÚDO
========================================================= */

.mc2-home-banner-content {

    position: relative;

    z-index: 2;

    max-width: 560px;

    padding: 32px 38px;

    color: #ffffff;

}


.mc2-home-banner-tag {

    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 0 11px;

    margin-bottom: 12px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.18);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;

}


.mc2-home-banner h2 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.15;

}


.mc2-home-banner p {

    max-width: 500px;

    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 15px;

    line-height: 1.5;

}


.mc2-home-banner-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 18px;

    border-radius: 22px;

    background: #ffffff;

    color: #ea1d2c;

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   ELEMENTO DECORATIVO
========================================================= */

.mc2-home-banner::after {

    content: '';

    position: absolute;

    right: -70px;

    top: -100px;

    width: 330px;

    height: 330px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

}


.mc2-home-banner::before {

    content: '';

    position: absolute;

    right: 100px;

    bottom: -130px;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

}


/* =========================================================
   BANNER PUBLICITÁRIO
========================================================= */

.mc2-home-ad-section {

    padding-top: 12px;

    padding-bottom: 30px;

}


.mc2-home-banner-ad {

    background:
        linear-gradient(
            105deg,
            #222222 0%,
            #3a3a3a 50%,
            #555555 100%
        );

}


.mc2-home-banner-ad .mc2-home-banner-button {

    color: #222222;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 700px) {

    .mc2-home-banner-section {

        padding: 16px 0;

    }


    .mc2-home-banner {

        min-height: 200px;

        border-radius: 15px;

    }


    .mc2-home-banner-content {

        max-width: 100%;

        padding: 26px 24px;

    }


    .mc2-home-banner h2 {

        font-size: 23px;

        line-height: 1.2;

    }


    .mc2-home-banner p {

        max-width: 90%;

        font-size: 13px;

    }


    .mc2-home-banner-button {

        min-height: 38px;

        padding: 0 15px;

        font-size: 12px;

    }


    .mc2-home-banner::after {

        right: -120px;

        top: -80px;

        width: 280px;

        height: 280px;

    }

}


@media (max-width: 430px) {

    .mc2-home-banner {

        min-height: 190px;

    }


    .mc2-home-banner-content {

        padding: 22px 20px;

    }


    .mc2-home-banner h2 {

        max-width: 270px;

        font-size: 21px;

    }


    .mc2-home-banner p {

        max-width: 260px;

        margin-bottom: 14px;

        font-size: 12px;

    }

}

/* =========================================================
   HERO
========================================================= */

.mc2-hero {

    position: relative;

    overflow: hidden;

    width: 100%;

    background:
        linear-gradient(
            110deg,
            #ea1d2c 0%,
            #f33242 50%,
            #ff6872 100%
        );

}


.mc2-hero-content {

    max-width: 680px;

    padding: 70px 0 75px;

    color: #ffffff;

}


.mc2-hero-brand {

    display: block;

    margin-bottom: 12px;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: .2px;

}


.mc2-hero h1 {

    max-width: 650px;

    margin: 0 0 14px;

    color: #ffffff;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.1;

}


.mc2-hero p {

    max-width: 560px;

    margin: 0 0 25px;

    color: rgba(255,255,255,.92);

    font-size: 17px;

    line-height: 1.5;

}


.mc2-hero-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 24px;

    background: #ffffff;

    color: #ea1d2c;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: transform .2s ease;

}


.mc2-hero-button:hover {

    color: #ea1d2c;

    transform: translateY(-2px);

}


/* =========================================================
   OFERTAS
========================================================= */

.mc2-offers {

    padding: 35px 0 25px;

}


.mc2-section-eyebrow {

    display: block;

    margin-bottom: 4px;

    color: #ea1d2c;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

}


.mc2-offers-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

}


.mc2-offer-card {

    position: relative;

    display: flex;

    min-height: 220px;

    overflow: hidden;

    border-radius: 18px;

    color: #ffffff;

    text-decoration: none;

    box-sizing: border-box;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.mc2-offer-card:hover {

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

}


.mc2-offer-discount {

    background:
        linear-gradient(
            110deg,
            #ea1d2c,
            #f4515e
        );

}


.mc2-offer-delivery {

    background:
        linear-gradient(
            110deg,
            #272727,
            #4a4a4a
        );

}


.mc2-offer-content {

    position: relative;

    z-index: 2;

    max-width: 500px;

    padding: 30px;

}


.mc2-offer-label {

    display: inline-flex;

    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .6px;

}


.mc2-offer-card h3 {

    margin: 0 0 9px;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;

}


.mc2-offer-card p {

    max-width: 400px;

    margin: 0 0 20px;

    color: rgba(255,255,255,.9);

    font-size: 14px;

    line-height: 1.5;

}


.mc2-offer-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding: 0 17px;

    border-radius: 20px;

    background: #ffffff;

    color: #333333;

    font-size: 12px;

    font-weight: 700;

}


.mc2-offer-discount .mc2-offer-button {

    color: #ea1d2c;

}


/* =========================================================
   PUBLICIDADE
========================================================= */

.mc2-advertising {

    padding: 15px 0 35px;

}


.mc2-advertising-banner {

    position: relative;

    display: block;

    overflow: hidden;

    min-height: 190px;

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            #f5f5f5,
            #eeeeee
        );

    color: #222222;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.mc2-advertising-banner:hover {

    color: #222222;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);

}


.mc2-advertising-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

    padding: 30px;

}


.mc2-advertising-label {

    display: block;

    margin-bottom: 8px;

    color: #ea1d2c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .7px;

}


.mc2-advertising-banner h2 {

    margin: 0 0 8px;

    color: #222222;

    font-size: 25px;

    font-weight: 800;

}


.mc2-advertising-banner p {

    max-width: 600px;

    margin: 0 0 15px;

    color: #666666;

    font-size: 14px;

    line-height: 1.5;

}


.mc2-advertising-action {

    color: #ea1d2c;

    font-size: 13px;

    font-weight: 700;

}


.mc2-advertising-action span {

    margin-left: 4px;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .mc2-hero-content {

        padding: 48px 0 52px;

    }


    .mc2-hero-brand {

        font-size: 16px;

    }


    .mc2-hero h1 {

        font-size: 30px;

    }


    .mc2-hero p {

        font-size: 14px;

    }


    .mc2-offers {

        padding-top: 25px;

    }


    .mc2-offers-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }


    .mc2-offer-card {

        min-height: 190px;

    }


    .mc2-offer-content {

        padding: 24px;

    }


    .mc2-offer-card h3 {

        font-size: 24px;

    }


    .mc2-advertising {

        padding-top: 5px;

    }


    .mc2-advertising-banner {

        min-height: 180px;

    }


    .mc2-advertising-content {

        padding: 24px;

    }


    .mc2-advertising-banner h2 {

        font-size: 21px;

    }

}


@media (max-width: 430px) {

    .mc2-hero-content {

        padding: 40px 0 44px;

    }


    .mc2-hero h1 {

        font-size: 27px;

    }


    .mc2-offer-card {

        min-height: 180px;

    }


    .mc2-offer-content {

        padding: 21px;

    }

}