/* =========================================================
   ALUMBRATEC MARKETPLACE
   PADRÃO VISUAL: E-COMMERCE / MARKETPLACE
   COR PRINCIPAL: #159947
   ========================================================= */


/* =========================================================
   VARIÁVEIS
   ========================================================= */

:root {
    --verde: #159947;
    --verde-hover: #117d3c;
    --verde-escuro: #0b6932;

    --verde-claro: #e9f8ef;
    --verde-extra-claro: #f4fbf7;

    --azul-escuro: #101828;

    --texto: #1f2937;
    --texto-secundario: #667085;
    --texto-claro: #98a2b3;

    --branco: #ffffff;

    --fundo: #f5f5f5;
    --fundo-claro: #f8faf9;

    --borda: #e4e7ec;
    --borda-verde: #cbe9d5;

    --sombra:
        0 4px 16px rgba(16, 24, 40, 0.08);

    --sombra-hover:
        0 10px 28px rgba(16, 24, 40, 0.14);

    --radius: 10px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--fundo);

    color: var(--texto);
}


img {
    max-width: 100%;
}


a {
    color: inherit;
}


button,
input,
select {
    font-family: inherit;
}


button,
select {
    cursor: pointer;
}


[hidden] {
    display: none !important;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1200px, 94%);
    margin: 0 auto;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.topo {
    background: var(--verde);

    position: relative;

    z-index: 100;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   LINHA PRINCIPAL DO CABEÇALHO
   ========================================================= */

.topo-principal {
    min-height: 82px;

    display: grid;

    grid-template-columns:
        210px
        minmax(300px, 1fr)
        auto;

    align-items: center;

    gap: 28px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    text-decoration: none;

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1;
}


.logo-alumbra {
    font-size: 25px;

    font-weight: 900;

    letter-spacing: -1px;

    color: var(--branco);
}


.logo-market {
    margin-top: 5px;

    font-size: 12px;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   BUSCA
   ========================================================= */

.busca-area {
    width: 100%;

    min-height: 46px;

    display: flex;

    align-items: stretch;

    background: var(--branco);

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.16);
}


.busca-area input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: var(--branco);

    padding: 0 18px;

    color: #344054;

    font-size: 15px;
}


.busca-area input::placeholder {
    color: #98a2b3;
}


.busca-area button {
    width: 58px;

    border: none;

    border-left: 1px solid #eeeeee;

    background: var(--branco);

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        background 0.2s ease;
}


.busca-area button:hover {
    background: #f5f7f6;
}


.busca-area svg {
    width: 22px;

    height: 22px;

    fill: #475467;
}


/* =========================================================
   AÇÕES DO TOPO
   ========================================================= */

.topo-acoes {
    display: flex;

    align-items: center;

    gap: 18px;
}


.topo-acoes a {
    color: var(--branco);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}


.topo-acoes a:hover {
    text-decoration: underline;
}


/* =========================================================
   MENU INFERIOR
   ========================================================= */

.barra-menu {
    border-top:
        1px solid rgba(255, 255, 255, 0.15);

    background: var(--verde);
}


.menu-conteudo {
    min-height: 46px;

    display: flex;

    align-items: center;

    gap: 32px;
}


.menu-categorias {
    border: none;

    background: transparent;

    color: var(--branco);

    padding: 0;

    font-size: 13px;

    font-weight: 800;

    display: flex;

    align-items: center;

    gap: 8px;
}


.menu-categorias span {
    font-size: 9px;
}


.menu-conteudo nav {
    display: flex;

    align-items: center;

    gap: 28px;
}


.menu-conteudo nav a {
    color:
        rgba(255, 255, 255, 0.91);

    text-decoration: none;

    font-size: 13px;
}


.menu-conteudo nav a:hover {
    color: var(--branco);

    text-decoration: underline;
}


/* =========================================================
   BANNER PRINCIPAL
   ========================================================= */

.banner {
    background:
        linear-gradient(
            115deg,
            #e3f7ea 0%,
            #ffffff 50%,
            #d7f3e1 100%
        );

    border-bottom: 1px solid #dce8e0;
}


.banner-conteudo {
    min-height: 270px;

    padding-top: 35px;

    padding-bottom: 35px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(280px, 0.8fr);

    align-items: center;

    gap: 45px;
}


.banner-texto {
    max-width: 650px;
}


.banner-selo {
    display: inline-flex;

    align-items: center;

    background: #dff5e7;

    color: var(--verde-escuro);

    border: 1px solid #bae7c9;

    border-radius: 999px;

    padding: 7px 13px;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 14px;
}


.banner h1 {
    margin: 0;

    color: var(--azul-escuro);

    font-size:
        clamp(
            34px,
            4.2vw,
            50px
        );

    line-height: 1.04;

    letter-spacing: -1.5px;
}


.banner h1 strong {
    color: var(--verde);

    display: block;
}


.banner p {
    margin:
        17px 0 22px;

    max-width: 610px;

    color: var(--texto-secundario);

    font-size: 16px;

    line-height: 1.55;
}


.banner-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 24px;

    background: var(--verde);

    color: var(--branco);

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.banner-btn:hover {
    background: var(--verde-hover);

    transform: translateY(-1px);
}


/* =========================================================
   BANNER DIREITO
   ========================================================= */

.banner-destaques {
    background:
        rgba(255, 255, 255, 0.9);

    border:
        1px solid #d6e9dd;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: var(--sombra);
}


.banner-destaques > div {
    padding: 20px 22px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    border-bottom:
        1px solid #edf2ef;
}


.banner-destaques > div:last-child {
    border-bottom: none;
}


.banner-destaques strong {
    color: var(--verde-escuro);

    font-size: 15px;
}


.banner-destaques span {
    color: var(--texto-secundario);

    font-size: 13px;
}


/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.beneficios {
    padding: 25px 0;
}


.beneficios-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: var(--branco);

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--sombra);
}


.beneficios article {
    min-height: 92px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right:
        1px solid #eeeeee;
}


.beneficios article:last-child {
    border-right: none;
}


.beneficio-icone {
    width: 44px;

    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--verde-claro);

    color: var(--verde);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    font-weight: 900;
}


.beneficios strong {
    display: block;

    margin-bottom: 4px;

    color: #344054;

    font-size: 14px;
}


.beneficios span {
    color: var(--texto-secundario);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   PÁGINA DE PRODUTOS
   ========================================================= */

.pagina-produtos {
    padding:
        20px 0 65px;
}


.layout-produtos {
    display: grid;

    grid-template-columns:
        230px
        minmax(0, 1fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   FILTROS
   ========================================================= */

.filtros {
    position: sticky;

    top: 15px;
}


.filtro-titulo {
    margin-bottom: 22px;
}


.filtro-titulo h2 {
    margin:
        0 0 6px;

    color: #202124;

    font-size: 26px;
}


.filtro-titulo span {
    color: var(--texto-secundario);

    font-size: 13px;
}


.filtro-titulo strong {
    color: #344054;
}


.filtro-bloco {
    padding: 20px 0;

    border-top:
        1px solid #d9dce1;
}


.filtro-bloco h3 {
    margin:
        0 0 14px;

    color: #344054;

    font-size: 15px;
}


.filtro-opcao {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 10px 0;

    font-size: 13px;

    color: #475467;

    cursor: pointer;
}


.filtro-opcao input {
    accent-color: var(--verde);

    width: 15px;

    height: 15px;
}


.filtro-bloco select,
.preco-filtros input {
    width: 100%;

    min-height: 40px;

    border:
        1px solid #d0d5dd;

    border-radius: 6px;

    background: var(--branco);

    outline: none;

    padding:
        0 10px;

    color: #344054;

    font-size: 13px;
}


.filtro-bloco select:focus,
.preco-filtros input:focus {
    border-color: var(--verde);

    box-shadow:
        0 0 0 3px rgba(21, 153, 71, 0.10);
}


.preco-filtros {
    display: grid;

    grid-template-columns:
        1fr;

    gap: 8px;
}


.btn-limpar-filtros {
    width: 100%;

    min-height: 41px;

    border:
        1px solid var(--verde);

    border-radius: 6px;

    color: var(--verde);

    background: transparent;

    font-size: 13px;

    font-weight: 800;

    transition: 0.2s;
}


.btn-limpar-filtros:hover {
    background: var(--verde-claro);
}


/* =========================================================
   CONTEÚDO DOS PRODUTOS
   ========================================================= */

.conteudo-produtos {
    min-width: 0;
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.produtos-toolbar {
    min-height: 72px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 16px;
}


.produtos-toolbar h2 {
    margin:
        0 0 5px;

    color: #222222;

    font-size: 24px;
}


.produtos-toolbar p {
    margin: 0;

    color: var(--texto-secundario);

    font-size: 13px;
}


.ordenacao {
    display: flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;
}


.ordenacao label {
    color: var(--texto-secundario);

    font-size: 12px;
}


.ordenacao select {
    min-height: 40px;

    border:
        1px solid #d0d5dd;

    border-radius: 6px;

    background: var(--branco);

    padding:
        0 10px;

    color: #344054;
}


/* =========================================================
   RESULTADO DE PESQUISA
   ========================================================= */

.resultado-pesquisa {
    margin-bottom: 15px;

    padding:
        12px 14px;

    background: var(--verde-claro);

    border:
        1px solid var(--borda-verde);

    border-radius: 7px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    color: #356547;

    font-size: 13px;
}


.resultado-pesquisa button {
    border: none;

    background: transparent;

    color: var(--verde);

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   GRID DOS PRODUTOS
   ========================================================= */

.produtos-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   CARD PRODUTO
   ========================================================= */

.produto-card {
    min-width: 0;

    background: var(--branco);

    border:
        1px solid #eeeeee;

    border-radius: 9px;

    overflow: hidden;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}


.produto-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        var(--sombra-hover);

    border-color:
        #d7e8dd;
}


.produto-card[hidden] {
    display: none;
}


/* =========================================================
   LINK / IMAGEM
   ========================================================= */

.produto-imagem-link {
    display: block;

    text-decoration: none;

    background: var(--branco);
}


.produto-imagem-link > a {
    display: block;

    text-decoration: none;
}


.produto-imagem {
    width: 100%;

    height: 245px;

    padding: 13px;

    background: var(--branco);

    border-bottom:
        1px solid #eeeeee;

    display: flex;

    align-items: center;

    justify-content: center;
}


.produto-imagem img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;
}


.imagem-fallback {
    width: 100%;

    height: 100%;

    border-radius: 7px;

    background: #f7f9f8;

    color: var(--texto-claro);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-size: 13px;
}


/* =========================================================
   INFORMAÇÕES DO PRODUTO
   ========================================================= */

.produto-info {
    padding:
        15px 16px 17px;
}


.produto-vendedor {
    margin-bottom: 8px;

    color: var(--texto-claro);

    font-size: 10px;

    line-height: 1.4;
}


.produto-vendedor strong {
    color: var(--verde);

    font-weight: 800;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.produto-titulo {
    min-height: 42px;

    display: block;

    margin-bottom: 7px;

    color: #333333;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.38;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}


a.produto-titulo:hover {
    color: var(--verde);
}


/* =========================================================
   DESCRIÇÃO
   ========================================================= */

.produto-descricao {
    margin:
        0 0 10px;

    min-height: 31px;

    color: var(--texto-secundario);

    font-size: 11px;

    line-height: 1.42;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}


/* =========================================================
   PREÇO
   ========================================================= */

.produto-preco {
    margin-top: 9px;

    display: flex;

    align-items: baseline;

    gap: 4px;

    color: #111827;
}


.produto-preco small {
    font-size: 14px;
}


.produto-preco strong {
    font-size: 27px;

    font-weight: 500;

    letter-spacing: -0.8px;
}


.produto-preco-consultar {
    margin:
        12px 0;

    color: #344054;

    font-size: 17px;

    font-weight: 600;
}


/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */

.produto-localizacao {
    margin-top: 8px;

    color: var(--texto-secundario);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   DISPONIBILIDADE
   ========================================================= */

.produto-entrega {
    margin-top: 8px;

    color: var(--verde);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   BOTÃO DO PRODUTO
   ========================================================= */

.btn-produto {
    width: 100%;

    min-height: 41px;

    margin-top: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: var(--verde);

    color: var(--branco);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.15s ease;
}


.btn-produto:hover {
    background: var(--verde-hover);
}


.btn-produto:active {
    transform: scale(0.98);
}


.btn-produto.indisponivel {
    background: #98a2b3;

    cursor: default;
}


/* =========================================================
   SEM PRODUTOS
   ========================================================= */

.sem-produtos {
    grid-column:
        1 / -1;

    padding:
        55px 25px;

    background: var(--branco);

    border:
        1px solid #eeeeee;

    border-radius: 10px;

    text-align: center;
}


.sem-produtos-icone {
    width: 58px;

    height: 58px;

    margin:
        0 auto 15px;

    border-radius: 50%;

    background: var(--verde-claro);

    color: var(--verde);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 900;
}


.sem-produtos h3 {
    margin:
        0 0 8px;

    color: #344054;

    font-size: 18px;
}


.sem-produtos p {
    margin:
        0 auto 10px;

    max-width: 450px;

    color: var(--texto-secundario);

    font-size: 13px;

    line-height: 1.5;
}


.btn-mostrar-todos {
    min-height: 41px;

    margin-top: 10px;

    padding:
        0 20px;

    border: none;

    border-radius: 6px;

    background: var(--verde);

    color: var(--branco);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   COMO FUNCIONA
   ========================================================= */

.como-funciona {
    padding:
        65px 0;

    background: var(--branco);
}


.secao-titulo {
    margin-bottom: 30px;
}


.secao-titulo > span {
    color: var(--verde);

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.secao-titulo h2 {
    margin:
        7px 0 0;

    color: var(--azul-escuro);

    font-size: 30px;
}


.como-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.como-grid article {
    padding: 26px;

    border:
        1px solid #e5e7eb;

    border-radius: 10px;

    background: var(--branco);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.como-grid article:hover {
    transform:
        translateY(-3px);

    box-shadow: var(--sombra);
}


.numero {
    width: 39px;

    height: 39px;

    margin-bottom: 15px;

    border-radius: 50%;

    background: var(--verde);

    color: var(--branco);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

    font-weight: 900;
}


.como-grid h3 {
    margin:
        0 0 8px;

    color: #344054;

    font-size: 16px;
}


.como-grid p {
    margin: 0;

    color: var(--texto-secundario);

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   LOJAS PARCEIRAS
   ========================================================= */

.lojas-parceiras {
    padding:
        65px 0;

    background: var(--verde-extra-claro);
}


.lojas-lista {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


.loja-mini-card {
    min-width: 0;

    padding: 17px;

    background: var(--branco);

    border:
        1px solid #dfe8e2;

    border-radius: 9px;

    display: flex;

    align-items: center;

    gap: 12px;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}


.loja-mini-card:hover {
    transform:
        translateY(-2px);

    box-shadow: var(--sombra);
}


.loja-avatar {
    width: 47px;

    height: 47px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--verde);

    color: var(--branco);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

    font-weight: 900;
}


.loja-mini-card strong {
    display: block;

    margin-bottom: 4px;

    color: #344054;

    font-size: 13px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.loja-mini-card span {
    color: var(--texto-secundario);

    font-size: 11px;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.rodape {
    padding-top: 50px;

    background: var(--azul-escuro);

    color: #d0d5dd;
}


.rodape-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr;

    gap: 45px;

    padding-bottom: 40px;
}


.rodape-logo {
    color: var(--branco);

    font-size: 20px;

    font-weight: 900;
}


.rodape-logo span {
    color: #5fe895;

    font-weight: 500;
}


.rodape p {
    max-width: 400px;

    color: #98a2b3;

    font-size: 12px;

    line-height: 1.6;
}


.rodape-grid > div > strong {
    display: block;

    margin-bottom: 15px;

    color: var(--branco);

    font-size: 13px;
}


.rodape-grid a {
    display: block;

    margin-bottom: 10px;

    color: #98a2b3;

    text-decoration: none;

    font-size: 12px;
}


.rodape-grid a:hover {
    color: #5fe895;
}


.rodape-final {
    padding:
        18px 0;

    border-top:
        1px solid #344054;

    color: #98a2b3;

    font-size: 11px;
}


/* =========================================================
   NOTEBOOK / TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .topo-principal {
        grid-template-columns:
            180px
            minmax(250px, 1fr);
    }


    .topo-acoes {
        display: none;
    }


    .produtos-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .beneficios-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .beneficios article:nth-child(2) {
        border-right: none;
    }


    .beneficios article:nth-child(1),
    .beneficios article:nth-child(2) {
        border-bottom:
            1px solid #eeeeee;
    }


    .como-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .lojas-lista {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET / CELULAR
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(94%, 650px);
    }


    /* CABEÇALHO */

    .topo-principal {
        min-height: auto;

        padding:
            14px 0;

        grid-template-columns:
            1fr;

        gap: 12px;
    }


    .logo {
        align-items: center;
    }


    .logo-alumbra {
        font-size: 23px;
    }


    .busca-area {
        width: 100%;
    }


    .menu-conteudo {
        min-height: 44px;

        overflow-x: auto;

        white-space: nowrap;

        gap: 18px;
    }


    .menu-categorias {
        flex-shrink: 0;
    }


    .menu-conteudo nav {
        gap: 18px;
    }


    /* BANNER */

    .banner-conteudo {
        min-height: auto;

        grid-template-columns:
            1fr;

        padding:
            36px 0;
    }


    .banner-destaques {
        display: none;
    }


    .banner h1 {
        font-size: 35px;
    }


    /* BENEFÍCIOS */

    .beneficios-grid {
        grid-template-columns:
            1fr;
    }


    .beneficios article {
        border-right: none;

        border-bottom:
            1px solid #eeeeee;
    }


    .beneficios article:last-child {
        border-bottom: none;
    }


    /* PRODUTOS */

    .layout-produtos {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .filtros {
        position: static;

        padding: 15px;

        background: var(--branco);

        border-radius: 9px;

        box-shadow: var(--sombra);
    }


    .filtro-bloco {
        padding:
            13px 0;
    }


    .produtos-toolbar {
        align-items:
            flex-start;

        flex-direction:
            column;

        min-height: auto;
    }


    .ordenacao {
        width: 100%;

        justify-content:
            space-between;
    }


    .ordenacao select {
        flex: 1;

        max-width: 200px;
    }


    .produtos-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .produto-imagem {
        height: 185px;

        padding: 10px;
    }


    .produto-info {
        padding:
            12px;
    }


    .produto-titulo {
        min-height: 36px;

        font-size: 13px;
    }


    .produto-preco strong {
        font-size: 21px;
    }


    .produto-descricao {
        display: none;
    }


    /* COMO FUNCIONA */

    .como-grid {
        grid-template-columns:
            1fr;
    }


    /* LOJAS */

    .lojas-lista {
        grid-template-columns:
            1fr;
    }


    /* FOOTER */

    .rodape-grid {
        grid-template-columns:
            1fr;

        gap: 25px;
    }

}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 440px) {

    .banner {
        text-align: center;
    }


    .banner h1 {
        font-size: 31px;
    }


    .banner-btn {
        width: 100%;
    }


    .produtos-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .produto-imagem {
        height: 145px;

        padding: 8px;
    }


    .produto-info {
        padding:
            10px;
    }


    .produto-vendedor {
        font-size: 8px;
    }


    .produto-titulo {
        min-height: 33px;

        font-size: 12px;
    }


    .produto-preco {
        gap: 2px;
    }


    .produto-preco small {
        font-size: 10px;
    }


    .produto-preco strong {
        font-size: 18px;
    }


    .produto-localizacao,
    .produto-entrega {
        font-size: 9px;
    }


    .btn-produto {
        min-height: 36px;

        margin-top: 11px;

        font-size: 10px;
    }


    .produtos-toolbar h2 {
        font-size: 20px;
    }


    .filtro-titulo h2 {
        font-size: 21px;
    }

}