/* =========================================================
   PALETA MONOCROMÁTICA
   PRETO + BRANCO + CINZA
========================================================= */

:root {

    --preto: #111111;
    --preto-suave: #1c1c1c;

    --cinza-escuro: #333333;
    --cinza: #666666;
    --cinza-medio: #888888;
    --cinza-claro: #dddddd;
    --cinza-fundo: #f3f3f3;

    --branco: #ffffff;
    --borda: #e5e5e5;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;

}


html {

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;

}


body {

    width: 100%;
    max-width: 100%;

    background: #f5f5f5;

    color: var(--preto);

    overflow-x: hidden;

}


/* =========================================================
   LINKS
========================================================= */

a {

    text-decoration: none;

    color: inherit;

}


/* =========================================================
   TOPO
========================================================= */

.top {

    width: 100%;
    height: 40px;

    font-size: 15px;

    display: flex;

    align-items: center;

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    padding: 0 6%;

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--preto);

    border-bottom: 1px solid rgba(0, 0, 0, .08);

    z-index: 2000;

}


/* =========================================================
   TEXTO DO TOPO
========================================================= */

.texto_top {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    white-space: nowrap;

    color: var(--preto);

}


/* =========================================================
   ÍCONES DO TOPO
========================================================= */

div.icone_top {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--preto);

}


/* =========================================================
   HEADER PRINCIPAL
========================================================= */

header {

    width: 100%;
    height: 80px;

    background: rgba(255, 255, 255, .76);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 6%;

    color: var(--preto);

    position: fixed;

    top: 40px;

    left: 0;

    border-bottom: 1px solid rgba(0, 0, 0, .08);

    z-index: 1000;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo a > img {

    width: 7em;

    color: var(--preto);

    margin: 0;

}


/* =========================================================
   NAVEGAÇÃO
========================================================= */

nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


nav a {

    color: var(--preto);

    font-size: 16px;

    transition: .3s;

}


nav a:hover {

    color: var(--cinza);

}


/* =========================================================
   AÇÕES DO HEADER
========================================================= */

.acoes {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;

}


.acoes a {

    background: transparent;

    color: var(--preto);

    padding: 10px 15px;

    border-radius: 20px;

    transition: .3s;

}


.acoes a:hover {

    background: rgba(0, 0, 0, .06);

}


/* =========================================================
   BARRA DE PESQUISA
========================================================= */

.barra-pesquisa {

    display: flex;

    align-items: center;

    background: rgba(255, 255, 255, .90);

    border-radius: 30px;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, .15);

    max-width: 100%;

    min-width: 0;

}


/* =========================================================
   INPUT PESQUISA
========================================================= */

.barra-pesquisa input {

    width: 350px;

    max-width: 100%;

    min-width: 0;

    padding: 12px 18px;

    border: none;

    outline: none;

    font-size: 15px;

    color: var(--preto);

    background: transparent;

}


.barra-pesquisa input::placeholder {

    color: var(--cinza-medio);

}


/* =========================================================
   BOTÃO PESQUISA
========================================================= */

.barra-pesquisa button {

    border: none;

    background: transparent;

    color: var(--preto);

    cursor: pointer;

    padding: 10px 15px;

    font-size: 18px;

    transition: .3s;

    flex-shrink: 0;

}


.barra-pesquisa button:hover {

    background: rgba(0, 0, 0, .06);

}


/* =========================================================
   ÍCONE DO CARRINHO
========================================================= */

.cart-button {

    background: transparent !important;

    color: var(--preto) !important;

    border: none;

    cursor: pointer;

}


/* =========================================================
   CONTADOR DO CARRINHO
========================================================= */

.contador {

    background: var(--preto);

    color: var(--branco);

    font-size: 11px;

    min-width: 18px;

    height: 18px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   MINI CARRINHO
========================================================= */

.mini-cart {

    background: rgba(255, 255, 255, .96);

    color: var(--preto);

    border: 1px solid var(--borda);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

}


/* =========================================================
   BOTÕES MINI CARRINHO
========================================================= */

.alterar-qtd {

    background: transparent;

    color: var(--preto);

    border: 1px solid var(--borda);

    cursor: pointer;

}


.alterar-qtd:hover {

    background: var(--cinza-fundo);

}


.remover-item {

    background: transparent;

    color: var(--preto);

    border: none;

    cursor: pointer;

}


/* =========================================================
   FINALIZAR ENCOMENDA
========================================================= */

.mini-cart .finalizar {

    width: 100%;

    margin-top: 25px;

    padding-top: 15px;

    border-top: 1px solid var(--borda);

}


.mini-cart .finalizar a {

    display: block;

    width: 100%;

    padding: 12px 18px;

    color: var(--branco);

    background: var(--preto);

    border: 1px solid var(--preto);

    border-radius: 8px;

    text-align: center;

    transition: .3s;

}


.mini-cart .finalizar a:hover {

    background: var(--cinza-escuro);

}


/* =========================================================
   BOTÃO CONTA
========================================================= */

.btn-conta {

    color: var(--preto);

    background: transparent;

    border: none;

    cursor: pointer;

}


.btn-conta:hover {

    color: var(--cinza);

}


/* =========================================================
   ESPAÇO PARA HEADER FIXO
========================================================= */

body {

    padding-top: 120px;

}


/* =========================================================
   BANNER
========================================================= */

.banner {

    width: 100%;

    min-height: 360px;

    position: relative;

    display: flex;

    align-items: center;

    padding: 40px 8%;

    color: var(--branco);

    overflow: hidden;

    isolation: isolate;

}


/* =========================================================
   SLIDES
========================================================= */

.banner-slides {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: -3;

}


.banner-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.03);

    transition:
        opacity 1s ease,
        transform 6s ease;

}


.banner-slide.ativo {

    opacity: 1;

    transform: scale(1);

}


/* =========================================================
   CAMADA ESCURA
========================================================= */

.banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.55),
            rgba(0,0,0,.30)
        );

    z-index: -2;

}


/* =========================================================
   TEXTO
========================================================= */

.banner-texto {

    width: 100%;

    max-width: 550px;

    position: relative;

    z-index: 2;

}


.banner h1 {

    font-size: 36px;

    line-height: 1.15;

    margin-bottom: 12px;

}


.banner p {

    font-size: 17px;

    line-height: 1.5;

    margin-bottom: 20px;

}


.banner a {

    display: inline-block;

    background: var(--branco);

    color: var(--preto);

    padding: 12px 24px;

    border-radius: 25px;

    transition:
        background .3s,
        transform .3s;

}


.banner a:hover {

    background: var(--cinza-claro);

    transform: translateY(-2px);

}


/* =========================================================
   INDICADORES
========================================================= */

.banner-indicadores {

    position: absolute;

    bottom: 20px;

    left: 8%;

    display: flex;

    align-items: center;

    gap: 8px;

    z-index: 5;

}


.banner-indicador {

    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.45);

    cursor: pointer;

    transition:
        width .3s,
        background .3s;

}


.banner-indicador.ativo {

    width: 25px;

    border-radius: 10px;

    background: #fff;

}


.banner-indicador:hover {

    background: #fff;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .banner {

        min-height: 320px;

        padding: 40px 6%;

    }


    .banner-texto {

        max-width: 500px;

    }


    .banner h1 {

        font-size: 32px;

    }


    .banner p {

        font-size: 16px;

    }


    .banner-indicadores {

        left: 6%;

    }

}


/* =========================================================
   1024px
========================================================= */

@media (max-width: 1024px) {

    .banner {

        min-height: 300px;

        padding: 35px 5%;

    }


    .banner-texto {

        max-width: 470px;

    }


    .banner h1 {

        font-size: 30px;

    }


    .banner p {

        font-size: 15px;

        margin-bottom: 17px;

    }


    .banner a {

        padding: 10px 20px;

        font-size: 14px;

    }


    .banner-indicadores {

        left: 5%;

        bottom: 16px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .banner {

        min-height: 240px;

        padding: 35px 6%;

        align-items: center;

    }


    .banner-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.82),
                rgba(0,0,0,.50)
            );

    }


    .banner-texto {

        width: 100%;

        max-width: 100%;

    }


    .banner h1 {

        font-size: 28px;

        line-height: 1.15;

        margin-bottom: 10px;

    }


    .banner p {

        font-size: 15px;

        line-height: 1.5;

        margin-bottom: 17px;

    }


    .banner a {

        padding: 10px 18px;

        font-size: 14px;

    }


    .banner-indicadores {

        left: 6%;

        bottom: 14px;

        gap: 7px;

    }


    .banner-indicador {

        width: 8px;

        height: 8px;

    }


    .banner-indicador.ativo {

        width: 22px;

    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 480px) {

    .banner {

        min-height: 220px;

        padding: 30px 6%;

    }


    .banner h1 {

        font-size: 25px;

    }


    .banner p {

        font-size: 14px;

    }


    .banner a {

        padding: 9px 16px;

        font-size: 13px;

    }


    .banner-indicadores {

        bottom: 12px;

    }

}


/* =========================================================
   REDUZIR MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .banner-slide {

        transition: none;

        transform: none;

    }

}

/* =========================================================
   SEÇÕES
========================================================= */

section {

    width: 100%;

    padding: 30px 6%;

}


section h2,
section h1 {

    text-align: left;

    font-size: 32px;

    margin-bottom: 40px;

}


/* =========================================================
   CATEGORIAS
========================================================= */

.categorias-section {

    width: 90%;

    padding: 30px 0;

    overflow: hidden;

    margin-left: auto;

    margin-right: auto;

}


.categorias-container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

}


.titulo-secao {

    text-align: left;

    font-size: 32px;

    margin-bottom: 20px;

}


/* =========================================================
   CARROSSEL CATEGORIAS
========================================================= */

.categorias-carousel {

    width: 100%;

    overflow: hidden;

    position: relative;

}


.categorias-track {

    display: flex;

    width: max-content;

    animation:
        categorias-infinito
        30s
        linear
        infinite;

}


.categorias-grupo {

    display: flex;

    gap: 25px;

    flex-shrink: 0;

    padding-right: 25px;

}


/* =========================================================
   CARD CATEGORIA
========================================================= */

.categoria-card {

    flex: 0 0 220px;

    width: 220px;

    background: var(--branco);

    border-radius: 15px;

    overflow: hidden;

    border: 1px solid var(--borda);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.categoria-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .12);

}


.categoria-link {

    display: block;

    width: 100%;

    color: var(--preto);

}


.categoria-imagem {

    width: 100%;

    height: 170px;

    background: var(--cinza-fundo);

    overflow: hidden;

}


.categoria-imagem img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;

}


.categoria-card:hover
.categoria-imagem img {

    transform: scale(1.08);

}


.categoria-info {

    padding: 15px;

}


.categoria-info h3 {

    margin: 0 0 7px;

    font-size: 17px;

    font-weight: 600;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


.categoria-info span {

    font-size: 14px;

    color: var(--cinza);

}


/* =========================================================
   ANIMAÇÃO CATEGORIAS
========================================================= */

@keyframes categorias-infinito {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


.categorias-carousel:hover
.categorias-track {

    animation-play-state: paused;

}


.nenhuma-categoria {

    padding: 30px 20px;

    text-align: center;

    color: var(--cinza);

}


/* =========================================================
   NOVIDADES
========================================================= */

.novidades-container {

    width: 90%;

    overflow: hidden;

    margin: 30px auto 0;

}


.novidades-container .titulo-secao {

    margin-bottom: 25px;

}


.novidades-carousel {

    width: 100%;

    overflow: hidden;

}


.novidades-track {

    display: flex;

    width: max-content;

    animation:
        novidadesLoop
        28s
        linear
        infinite;

}


.novidades-grupo {

    display: flex;

    align-items: center;

    gap: 28px;

    padding-right: 28px;

    flex-shrink: 0;

}


/* =========================================================
   CARD NOVIDADE
========================================================= */

.novidade-card {

    width: 145px;

    height: 145px;

    flex-shrink: 0;

    display: block;

    text-decoration: none;

    border-radius: 50%;

    overflow: hidden;

    background: var(--cinza-fundo);

    border: 2px solid transparent;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.novidade-card:hover {

    transform: scale(1.06);

    border-color: var(--preto);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .12);

}


.novidade-imagem {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.novidade-imagem img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .3s ease;

}


.novidade-card:hover
.novidade-imagem img {

    transform: scale(1.08);

}


@keyframes novidadesLoop {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


.nenhuma-novidade {

    text-align: center;

    color: var(--cinza);

    padding: 20px 0;

}


/* =========================================================
   CARROSSEL PRODUTOS
========================================================= */

.carousel-container {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

}


.carousel-track {

    width: 100%;

    display: flex;

    gap: 25px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

}


.carousel-track::-webkit-scrollbar {

    display: none;

}


/* =========================================================
   CARD PRODUTO
========================================================= */

.produto-card {

    flex: 0 0 240px;

    height: 455px;

    background: var(--branco);

    border-radius: 15px;

    padding: 15px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--borda);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .06);

    transition:
        transform .3s,
        box-shadow .3s;

}


.produto-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .12);

}


.produto-card img {

    width: 100%;

    height: 200px;

    object-fit: contain;

    border-radius: 10px;

}


.produto-card h3 {

    font-size: 15px;

    line-height: 20px;

    font-weight: 600;

    margin: 15px 0 10px;

    height: 60px;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

}


/* =========================================================
   PREÇO
========================================================= */

.area-preco {

    height: 70px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.preco-normal {

    font-size: 20px;

    font-weight: bold;

    color: var(--preto);

}


.preco-antigo {

    font-size: 15px;

    color: var(--cinza-medio);

    text-decoration: line-through;

}


.preco-promocional {

    font-size: 22px;

    font-weight: bold;

    color: var(--preto);

}


.desconto {

    font-size: 13px;

    color: var(--cinza-escuro);

    font-weight: bold;

}


.preco {

    font-size: 20px;

    font-weight: bold;

    color: var(--preto);

}


/* =========================================================
   AÇÕES PRODUTO
========================================================= */

.acoes-produto {

    margin-top: auto;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.btn-carrinho {

    width: 100%;

    padding: 11px;

    border: none;

    border-radius: 8px;

    background: var(--preto);

    color: var(--branco);

    font-size: 14px;

    cursor: pointer;

    transition: .3s;

}


.btn-carrinho:hover {

    background: var(--cinza-escuro);

}


.btn-ver {

    width: 100%;

    padding: 11px;

    background: var(--cinza-escuro);

    color: var(--branco);

    border-radius: 8px;

    text-align: center;

    display: block;

    font-size: 14px;

    transition: .3s;

}


.btn-ver:hover {

    background: var(--preto);

}


/* =========================================================
   BOTÕES CARROSSEL
========================================================= */

.carousel-btn {

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: var(--preto);

    color: var(--branco);

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    z-index: 5;

    transition: .3s;

}


.carousel-btn:hover {

    background: var(--cinza-escuro);

}


.carousel-btn.prev {

    margin-right: 10px;

}


.carousel-btn.next {

    margin-left: 10px;

}


/* =========================================================
   CARRINHO
========================================================= */

.cart {

    position: relative;

}


.cart-button {

    border: none;

    background: var(--branco);

    color: var(--preto);

    padding: 10px 15px;

    border-radius: 25px;

    cursor: pointer;

    font-size: 18px;

    transition: .3s;

}


.cart-button:hover {

    background: var(--cinza-claro);

}


/* =========================================================
   CONTADOR
========================================================= */

.contador {

    background: var(--preto);

    color: var(--branco);

    border-radius: 50%;

    padding: 3px 7px;

    font-size: 12px;

    position: absolute;

    top: -8px;

    right: -8px;

}


/* =========================================================
   MINI CARRINHO
========================================================= */

.mini-cart {

    position: absolute;

    top: 55px;

    right: 0;

    width: 320px;

    max-width: calc(100vw - 24px);

    background: var(--branco);

    color: var(--preto);

    padding: 20px;

    border-radius: 15px;

    border: 1px solid var(--borda);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .15);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: .3s;

    z-index: 2000;

}


.cart:hover .mini-cart {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.mini-cart.mostrar {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =========================================================
   PRODUTO MINI CARRINHO
========================================================= */

.mini-produto {

    display: flex;

    gap: 10px;

    padding: 10px 0;

}


.mini-produto img {

    width: 60px;

    height: 60px;

    object-fit: cover;

    border-radius: 8px;

    flex-shrink: 0;

}


.mini-info {

    flex: 1;

    min-width: 0;

}


.mini-info p {

    font-size: 14px;

    margin-bottom: 5px;

}


.mini-info span {

    font-size: 13px;

    font-weight: bold;

}


/* =========================================================
   CONTROLE QUANTIDADE
========================================================= */

.controle-qtd {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

}


.controle-qtd a,
.controle-qtd button {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--preto);

    color: var(--branco);

    border-radius: 5px;

    border: none;

    cursor: pointer;

    transition: .2s;

}


.controle-qtd a:hover,
.controle-qtd button:hover {

    background: var(--cinza-escuro);

}


.controle-qtd .remover {

    background: var(--cinza-escuro);

}


.controle-qtd .remover:hover {

    background: var(--preto);

}


/* =========================================================
   VANTAGENS
========================================================= */

.vantagens {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px 16px;

    box-sizing: border-box;

}


.vantagens1 {

    width: min(100%, 1320px);

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: stretch;

    background-color: var(--branco);

    border: 1px solid var(--borda);

    border-radius: 15px;

    padding: 15px;

    margin-top: 20px;

    box-sizing: border-box;

    overflow: hidden;

}


/* =========================================================
   CADA VANTAGEM
========================================================= */

.vantagem {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    line-height: 19px;

    box-sizing: border-box;

    border-right: 1px solid var(--cinza-claro);

}


.vantagem:last-child {

    border-right: none;

}


/* =========================================================
   ÍCONE
========================================================= */

.img_vantagem {

    width: 45px;

    height: 45px;

    min-width: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.img_vantagem img {

    width: 45px !important;

    height: 45px !important;

    max-width: 45px !important;

    max-height: 45px !important;

    object-fit: contain;

    display: block;

}


/* =========================================================
   CONTEÚDO
========================================================= */

.texto_vantagem {

    min-width: 0;

    flex: 1;

    border: none;

}


span.titulo {

    display: block;

    font-size: 16px;

    font-weight: 700;

    line-height: 20px;

    margin: 0 0 2px 0;

    word-break: normal;

}


.vantagem p {

    margin: 0;

    font-size: 15px;

    line-height: 19px;

    font-weight: 400;

    overflow-wrap: break-word;

}


/* =========================================================
   COMPATIBILIDADE COM .ULTIMO
========================================================= */

.ultimo {

    border-right: none !important;

}


/* =========================================================
   TABLET
   2 COLUNAS × 2 LINHAS
========================================================= */

@media (max-width: 1000px) {

    .vantagens {

        padding: 25px 16px;

    }


    .vantagens1 {

        width: min(100%, 700px);

        grid-template-columns: repeat(2, minmax(0, 1fr));

        padding: 10px;

        margin-top: 15px;

    }


    .vantagem {

        min-height: 80px;

        padding: 14px;

        gap: 10px;

        border-right: 1px solid var(--cinza-claro);

        border-bottom: 1px solid var(--cinza-claro);

    }


    .vantagem:nth-child(2n) {

        border-right: none;

    }


    .vantagem:nth-last-child(-n + 2) {

        border-bottom: none;

    }


    .img_vantagem {

        width: 42px;

        height: 42px;

        min-width: 42px;

        flex-basis: 42px;

    }


    .img_vantagem img {

        width: 42px !important;

        height: 42px !important;

        max-width: 42px !important;

        max-height: 42px !important;

    }


    span.titulo {

        font-size: 15px;

        line-height: 19px;

    }


    .vantagem p {

        font-size: 14px;

        line-height: 18px;

    }

}


/* =========================================================
   MOBILE
   1 COLUNA × 4 LINHAS
========================================================= */

@media (max-width: 700px) {

    .vantagens {

        width: 100%;

        padding: 20px 12px;

        box-sizing: border-box;

    }


    .vantagens1 {

        width: 100%;

        max-width: 500px;

        grid-template-columns: 1fr;

        padding: 6px;

        margin-top: 10px;

        border-radius: 15px;

    }


    .vantagem {

        width: 100%;

        min-width: 0;

        min-height: 72px;

        padding: 12px 10px;

        gap: 12px;

        border-right: none !important;

        border-bottom: 1px solid var(--cinza-claro);

        box-sizing: border-box;

    }


    .vantagem:last-child {

        border-bottom: none;

    }


    .texto_vantagem {

        min-width: 0;

        width: 100%;

        border: none !important;

    }


    .img_vantagem {

        width: 42px;

        height: 42px;

        min-width: 42px;

        flex: 0 0 42px;

    }


    .img_vantagem img {

        width: 42px !important;

        height: 42px !important;

        max-width: 42px !important;

        max-height: 42px !important;

    }


    span.titulo {

        font-size: 15px;

        line-height: 19px;

        margin-bottom: 2px;

    }


    .vantagem p {

        font-size: 13px;

        line-height: 17px;

    }

}


/* =========================================================
   TELEMÓVEIS PEQUENOS
========================================================= */

@media (max-width: 380px) {

    .vantagens {

        padding: 15px 10px;

    }


    .vantagens1 {

        padding: 4px;

        border-radius: 13px;

    }


    .vantagem {

        min-height: 65px;

        padding: 10px 8px;

        gap: 10px;

    }


    .img_vantagem {

        width: 38px;

        height: 38px;

        min-width: 38px;

        flex-basis: 38px;

    }


    .img_vantagem img {

        width: 38px !important;

        height: 38px !important;

        max-width: 38px !important;

        max-height: 38px !important;

    }


    span.titulo {

        font-size: 14px;

        line-height: 18px;

    }


    .vantagem p {

        font-size: 12px;

        line-height: 16px;

    }

}


/* =========================================================
   TELEMÓVEIS MUITO PEQUENOS
========================================================= */

@media (max-width: 320px) {

    .vantagens {

        padding: 12px 8px;

    }


    .vantagens1 {

        padding: 3px;

        border-radius: 12px;

    }


    .vantagem {

        padding: 9px 7px;

        gap: 9px;

    }


    .img_vantagem {

        width: 35px;

        height: 35px;

        min-width: 35px;

        flex-basis: 35px;

    }


    .img_vantagem img {

        width: 35px !important;

        height: 35px !important;

        max-width: 35px !important;

        max-height: 35px !important;

    }


    span.titulo {

        font-size: 13px;

        line-height: 17px;

    }


    .vantagem p {

        font-size: 11px;

        line-height: 15px;

    }

}


/* =========================================================
   TABLET / TELAS INTERMEDIÁRIAS
   1100px → 769px

   CORREÇÃO PRINCIPAL DO HEADER
========================================================= */

@media (max-width: 1100px) and (min-width: 769px) {


    /* =====================================================
       TOPO
    ===================================================== */

    .top {

        padding: 0 3%;

        font-size: 13px;

    }


    .texto_top {

        left: 50%;

        max-width: 55%;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;

    }


    div.icone_top {

        gap: 10px;

    }


    /* =====================================================
       HEADER
    ===================================================== */

    header {

        padding: 0 3%;

        gap: 15px;

    }


    /* =====================================================
       LOGO
    ===================================================== */

    .logo {

        flex: 0 0 auto;

        min-width: 0;

    }


    .logo h1 {

        font-size: 24px;

        white-space: nowrap;

    }


    /* =====================================================
       NAVEGAÇÃO
    ===================================================== */

    nav {

        gap: 14px;

        flex: 0 1 auto;

        min-width: 0;

    }


    nav a {

        font-size: 14px;

        white-space: nowrap;

    }


    /* =====================================================
       PESQUISA
    ===================================================== */

    .barra-pesquisa {

        flex: 1 1 220px;

        width: auto;

        min-width: 160px;

        max-width: 280px;

    }


    .barra-pesquisa input {

        width: 100%;

        min-width: 0;

    }


    /* =====================================================
       AÇÕES
    ===================================================== */

    .acoes {

        gap: 5px;

        flex-shrink: 0;

    }


    .acoes a {

        padding: 8px 9px;

    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    html,
    body {

        width: 100%;

        max-width: 100%;

        overflow-x: hidden;

    }


    body {

        padding-top: 68px;

        padding-bottom: 78px;

        background: #f5f5f5;

    }


    /* =====================================================
       TOPO
    ===================================================== */

    .top {

        display: none !important;

    }


    /* =====================================================
       HEADER MOBILE
    ===================================================== */

    header,
    header#header-principal {

        position: fixed;

        top: 0;

        left: 0;

        right: 0;

        width: 100%;

        height: 68px;

        padding: 0 12px;

        display: flex !important;

        align-items: center;

        justify-content: space-between;

        gap: 3px;

        background: rgba(255, 255, 255, .96);

        backdrop-filter: blur(18px);

        -webkit-backdrop-filter: blur(18px);

        border-bottom:
            1px solid
            rgba(0, 0, 0, .08);

        border-radius:
            0 0 20px 20px;

        box-shadow:
            0 4px 20px
            rgba(0, 0, 0, .06);

        z-index: 5000;

    }


    /* =====================================================
       MENU
    ===================================================== */

    .menu-toggle {

        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

        padding: 0 !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center;

        justify-content: center;

        flex-shrink: 0;

        border: none !important;

        outline: none;

        background: transparent !important;

        color: #111 !important;

        font-size: 25px;

        cursor: pointer;

        border-radius: 50%;

        transition:
            background .2s,
            transform .2s;

    }


    .menu-toggle:hover {

        background: rgba(0, 0, 0, .06) !important;

    }


    .menu-toggle:active {

        transform: scale(.92);

    }


    .menu-toggle i {

        font-size: 25px;

        line-height: 1;

    }


    /* =====================================================
       LOGO
    ===================================================== */

    header#header-principal .logo {

        flex: 1;

        min-width: 0;

        margin-left: 4px;

        display: flex;

        align-items: center;

    }


    header#header-principal .logo a {

        display: block;

        color: #111;

        text-decoration: none;

        max-width: 100%;

    }


  .logo a > img {

    width: 5em;

    color: var(--preto);

    margin: 0;

}


    /* =====================================================
       NAVEGAÇÃO
    ===================================================== */

    header#header-principal nav {

        display: none !important;

    }


    /* =====================================================
       MENU FLUTUANTE
    ===================================================== */

    header#header-principal.menu-aberto
    nav#menu-principal {

        position: fixed;

        top: 78px;

        left: 12px;

        right: 12px;

        width: auto;

        height: auto;

        padding: 10px;

        display: flex !important;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        background:
            rgba(255, 255, 255, .98);

        backdrop-filter: blur(20px);

        -webkit-backdrop-filter: blur(20px);

        border:
            1px solid
            rgba(0, 0, 0, .08);

        border-radius: 18px;

        box-shadow:
            0 15px 40px
            rgba(0, 0, 0, .15);

        z-index: 6000;

        animation:
            menuMobileEntrada
            .20s ease;

    }


    header#header-principal.menu-aberto
    nav#menu-principal a {

        width: 100%;

        min-height: 48px;

        padding: 12px 15px;

        display: flex;

        align-items: center;

        color: #111;

        text-decoration: none;

        font-size: 16px;

        font-weight: 500;

        border-radius: 13px;

        transition:
            background .2s;

    }


    header#header-principal.menu-aberto
    nav#menu-principal a:hover {

        background:
            rgba(0, 0, 0, .06);

    }


    @keyframes menuMobileEntrada {

        from {

            opacity: 0;

            transform:
                translateY(-8px)
                scale(.98);

        }

        to {

            opacity: 1;

            transform:
                translateY(0)
                scale(1);

        }

    }


    /* =====================================================
       AÇÕES
    ===================================================== */

    header#header-principal .acoes {

        display: flex !important;

        align-items: center;

        justify-content: flex-end;

        gap: 1px;

        margin-left: 2px;

        flex-shrink: 0;

    }


    /* =====================================================
       PESQUISA DESKTOP
    ===================================================== */

    header#header-principal
    .barra-pesquisa {

        display: none !important;

    }


    /* =====================================================
       BOTÃO PESQUISA
    ===================================================== */

    .search-toggle {

        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

        padding: 0 !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center;

        justify-content: center;

        border: none !important;

        outline: none;

        background: transparent !important;

        color: #111 !important;

        font-size: 22px;

        cursor: pointer;

        border-radius: 50%;

        flex-shrink: 0;

        transition:
            background .2s,
            transform .2s;

    }


    .search-toggle:hover {

        background:
            rgba(0, 0, 0, .06) !important;

    }


    .search-toggle:active {

        transform: scale(.92);

    }


    .search-toggle i {

        font-size: 22px;

        line-height: 1;

    }


    /* =====================================================
       PESQUISA ABERTA
    ===================================================== */

    body.pesquisa-aberta
    header#header-principal
    .barra-pesquisa {

        position: fixed !important;

        top: 78px !important;

        left: 12px !important;

        right: 12px !important;

        width: auto !important;

        height: 52px !important;

        margin: 0 !important;

        padding: 0 !important;

        display: flex !important;

        align-items: center;

        background: #fff !important;

        border:
            1px solid
            rgba(0, 0, 0, .08) !important;

        border-radius: 16px !important;

        box-shadow:
            0 12px 35px
            rgba(0, 0, 0, .14);

        overflow: hidden;

        z-index: 7000;

        animation:
            pesquisaEntrada
            .20s ease;

    }


    body.pesquisa-aberta
    .barra-pesquisa input {

        width: 100% !important;

        min-width: 0;

        height: 52px !important;

        padding: 0 14px !important;

        border: none !important;

        outline: none !important;

        background: transparent !important;

        color: #111 !important;

        font-size: 16px !important;

        box-shadow: none !important;

    }


    body.pesquisa-aberta
    .barra-pesquisa button {

        width: 52px !important;

        min-width: 52px !important;

        height: 52px !important;

        padding: 0 !important;

        display: flex !important;

        align-items: center;

        justify-content: center;

        border: none !important;

        border-radius: 0 !important;

        background: #111 !important;

        color: #fff !important;

        font-size: 20px;

        cursor: pointer;

    }


    body.pesquisa-aberta
    .barra-pesquisa button i {

        font-size: 20px;

    }


    @keyframes pesquisaEntrada {

        from {

            opacity: 0;

            transform:
                translateY(-8px)
                scale(.98);

        }

        to {

            opacity: 1;

            transform:
                translateY(0)
                scale(1);

        }

    }


    /* =====================================================
       CARRINHO
    ===================================================== */

    header#header-principal .cart {

        position: relative;

        flex-shrink: 0;

    }


    .cart-button {

        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

        padding: 0 !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center;

        justify-content: center;

        border: none !important;

        background: transparent !important;

        color: #111 !important;

        border-radius: 50%;

        cursor: pointer;

        position: relative;

    }


    .cart-button i {

        font-size: 22px;

        line-height: 1;

    }


    .cart-button:active {

        transform: scale(.92);

    }


    /* =====================================================
       CONTADOR
    ===================================================== */

    .contador {

        position: absolute;

        top: 1px;

        right: 0;

        min-width: 17px !important;

        width: 17px;

        height: 17px !important;

        padding: 0 !important;

        display: flex !important;

        align-items: center;

        justify-content: center;

        border:
            2px solid
            #fff;

        border-radius: 50%;

        background: #111 !important;

        color: #fff !important;

        font-size: 9px !important;

        line-height: 1;

        z-index: 2;

    }


    /* =====================================================
       MINI CARRINHO
    ===================================================== */

    header#header-principal
    .mini-cart {

        position: fixed !important;

        top: 76px !important;

        left: 12px !important;

        right: 12px !important;

        width: auto !important;

        max-width: none !important;

        max-height: 70vh;

        overflow-y: auto;

        padding: 18px;

        border-radius: 20px;

        background:
            rgba(255, 255, 255, .98);

        border:
            1px solid
            rgba(0, 0, 0, .08);

        box-shadow:
            0 15px 40px
            rgba(0, 0, 0, .15);

        z-index: 7000;

    }


    /* =====================================================
       CONTA
    ===================================================== */

    .btn-conta {

        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

        padding: 0 !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center;

        justify-content: center;

        border: none !important;

        background: transparent !important;

        color: #111 !important;

        border-radius: 50%;

        flex-shrink: 0;

    }


    .btn-conta i {

        font-size: 22px;

    }


    .texto-conta {

        display: none !important;

    }


    .btn-conta:active {

        transform: scale(.92);

    }


    /* =====================================================
       MINI PRODUTO
    ===================================================== */

    .mini-produto {

        display: flex;

        gap: 10px;

        padding: 10px 0;

    }


    .mini-produto img {

        width: 60px !important;

        height: 60px !important;

        object-fit: cover;

        border-radius: 8px;

        flex-shrink: 0;

    }


    .mini-info {

        flex: 1;

        min-width: 0;

    }


    .mini-info p {

        margin: 0 0 5px;

        font-size: 14px;

        color: #111;

    }


    .mini-info span {

        font-size: 13px;

        font-weight: 600;

        color: #111;

    }


    /* =====================================================
       CONTROLE QUANTIDADE
    ===================================================== */

    .controle-qtd {

        display: flex;

        align-items: center;

        gap: 7px;

        margin-top: 8px;

    }


    .controle-qtd button,
    .controle-qtd a {

        width: 28px;

        height: 28px;

        padding: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        border:
            1px solid
            rgba(0, 0, 0, .15);

        border-radius: 7px;

        background: #fff;

        color: #111;

        cursor: pointer;

    }


    .controle-qtd button:active,
    .controle-qtd a:active {

        transform: scale(.92);

    }


    .controle-qtd .quantidade {

        min-width: 20px;

        text-align: center;

        font-size: 14px;

    }


    /* =====================================================
       FINALIZAR
    ===================================================== */

    .mini-cart .finalizar {

        margin-top: 12px;

    }


    .mini-cart .finalizar a {

        width: 100%;

        min-height: 44px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 10px;

        background: #111;

        color: #fff;

        text-decoration: none;

        font-size: 14px;

    }


    /* =====================================================
       BANNER MOBILE
    ===================================================== */

    .banner {

        min-height: 240px;

        padding: 35px 6%;

        background-position: center;

    }


    .banner-texto {

        width: 100%;

        max-width: 100%;

    }


    .banner h1 {

        font-size: 28px;

        line-height: 1.15;

        margin-bottom: 10px;

    }


    .banner p {

        font-size: 15px;

        line-height: 1.5;

        margin-bottom: 17px;

    }


    .banner a {

        padding: 10px 18px;

        font-size: 14px;

    }


    /* =====================================================
       SEÇÕES MOBILE
    ===================================================== */

    section {

        padding: 25px 5%;

    }


    section h2,
    section h1,
    .titulo-secao {

        font-size: 25px;

        line-height: 1.2;

        margin-bottom: 20px;

    }


    /* =====================================================
       CATEGORIAS MOBILE
    ===================================================== */

    .categorias-section {

        width: 100%;

        padding: 25px 5%;

    }


    .categorias-container {

        width: 100%;

    }


    .categorias-grupo {

        gap: 15px;

        padding-right: 15px;

    }


    .categoria-card {

        flex: 0 0 165px;

        width: 165px;

        border-radius: 13px;

    }


    .categoria-imagem {

        height: 125px;

    }


    .categoria-info {

        padding: 11px;

    }


    .categoria-info h3 {

        font-size: 15px;

        margin-bottom: 5px;

    }


    .categoria-info span {

        font-size: 12px;

    }


    /* =====================================================
       NOVIDADES MOBILE
    ===================================================== */

    .novidades-container {

        width: 100%;

        margin-top: 10px;

    }


    .novidades-container .titulo-secao {

        margin-bottom: 18px;

    }


    .novidades-grupo {

        gap: 15px;

        padding-right: 15px;

    }


    .novidade-card {

        width: 105px;

        height: 105px;

        border-width: 1px;

    }


    /* =====================================================
       PRODUTOS MOBILE
    ===================================================== */

    .carousel-container {

        width: 100%;

    }


    .carousel-track {

        gap: 12px;

        padding-bottom: 5px;

    }


    .produto-card {

        flex: 0 0 185px;

        width: 185px;

        height: 385px;

        padding: 11px;

        border-radius: 13px;

    }


    .produto-card img {

        width: 100%;

        height: 155px;

        border-radius: 8px;

    }


    .produto-card h3 {

        font-size: 14px;

        line-height: 18px;

        margin: 11px 0 7px;

        height: 54px;

    }


    .area-preco {

        height: 60px;

    }


    .preco-normal,
    .preco {

        font-size: 17px;

    }


    .preco-promocional {

        font-size: 19px;

    }


    .preco-antigo {

        font-size: 12px;

    }


    .desconto {

        font-size: 11px;

    }


    .acoes-produto {

        gap: 7px;

    }


    .btn-carrinho,
    .btn-ver {

        padding: 9px 7px;

        font-size: 12px;

        border-radius: 7px;

    }


    /* =====================================================
       BOTÕES CARROSSEL
    ===================================================== */

    .carousel-btn {

        display: none;

    }


    /* =====================================================
       VANTAGENS MOBILE
    ===================================================== */

    .vantagens {

        width: 100%;

        padding: 20px 5%;

    }


    .vantagens1 {

        width: 100%;

        margin-top: 0;

        padding: 10px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 0;

        border-radius: 15px;

    }


    .vantagem {

        width: 100%;

        min-width: 0;

        padding: 14px 8px;

        gap: 8px;

        align-items: center;

    }


    .img_vantagem {

        width: 38px;

        height: 38px;

        min-width: 38px;

        flex: 0 0 38px;

    }


    .img_vantagem img {

        width: 38px !important;

        height: 38px !important;

        max-width: 38px !important;

        max-height: 38px !important;

    }


    span.titulo {

        font-size: 13px;

        line-height: 16px;

    }


    .texto_vantagem {

        border-right: none;

    }


    .vantagem:nth-child(1),
    .vantagem:nth-child(2) {

        border-bottom:
            1px solid
            var(--cinza-claro);

    }


    .vantagem:nth-child(1),
    .vantagem:nth-child(3) {

        border-right:
            1px solid
            var(--cinza-claro);

    }


    .ultimo {

        border-bottom: none !important;

        border-right: none !important;

    }

}


/* =========================================================
   MOBILE MUITO PEQUENO
========================================================= */

@media (max-width: 480px) {

    header#header-principal {

        padding-left: 8px;

        padding-right: 8px;

    }


    header#header-principal .logo {

        margin-left: 2px;

    }


    .logo a > img {

    width: 4em;

    color: var(--preto);

    margin: 0;

}


    .menu-toggle,
    .search-toggle,
    .cart-button,
    .btn-conta {

        width: 38px !important;

        min-width: 38px !important;

        height: 38px !important;

    }


    .menu-toggle i {

        font-size: 22px;

    }


    .search-toggle i,
    .cart-button i,
    .btn-conta i {

        font-size: 20px;

    }


    .banner {

        min-height: 220px;

        padding: 30px 6%;

    }


    .banner h1 {

        font-size: 25px;

    }


    .banner p {

        font-size: 14px;

    }


    section {

        padding-left: 4%;

        padding-right: 4%;

    }


    .categorias-section {

        padding-left: 4%;

        padding-right: 4%;

    }


    .categoria-card {

        flex-basis: 150px;

        width: 150px;

    }


    .categoria-imagem {

        height: 115px;

    }


    .novidade-card {

        width: 92px;

        height: 92px;

    }


    .produto-card {

        flex-basis: 175px;

        width: 175px;

        height: 375px;

    }


    .produto-card img {

        height: 145px;

    }


    .vantagens {

        padding-left: 4%;

        padding-right: 4%;

    }


    .vantagens1 {

        padding: 7px;

    }


    .vantagem {

        padding: 12px 6px;

    }


    .img_vantagem {

        width: 34px;

        height: 34px;

        min-width: 34px;

        flex-basis: 34px;

    }


    .img_vantagem img {

        width: 34px !important;

        height: 34px !important;

        max-width: 34px !important;

        max-height: 34px !important;

    }


    span.titulo {

        font-size: 12px;

        line-height: 15px;

    }

}


/* =========================================================
   TELAS EXTREMAMENTE PEQUENAS
========================================================= */

@media (max-width: 360px) {

    header#header-principal {

        padding-left: 5px;

        padding-right: 5px;

        gap: 0;

    }


    header#header-principal .logo {

        margin-left: 0;

    }


    header#header-principal .logo h1 {

        font-size: 19px;

    }


    .menu-toggle,
    .search-toggle,
    .cart-button,
    .btn-conta {

        width: 35px !important;

        min-width: 35px !important;

        height: 35px !important;

    }


    .menu-toggle i {

        font-size: 20px;

    }


    .search-toggle i,
    .cart-button i,
    .btn-conta i {

        font-size: 18px;

    }


    .contador {

        width: 15px;

        min-width: 15px !important;

        height: 15px !important;

        font-size: 8px !important;

        top: 0;

        right: -1px;

    }


    .produto-card {

        flex-basis: 165px;

        width: 165px;

        height: 360px;

        padding: 10px;

    }


    .produto-card img {

        height: 135px;

    }


    .produto-card h3 {

        font-size: 13px;

        line-height: 17px;

        height: 51px;

    }


    .preco-normal,
    .preco {

        font-size: 16px;

    }


    .preco-promocional {

        font-size: 18px;

    }


    .btn-carrinho,
    .btn-ver {

        font-size: 11px;

        padding: 8px 5px;

    }


    .vantagens1 {

        grid-template-columns: 1fr;

    }


    .vantagem {

        border-right: none !important;

        border-bottom:
            1px solid
            var(--cinza-claro);

    }


    .vantagem:last-child {

        border-bottom: none;

    }

}


/* =========================================================
   REDUZIR MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}