* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #172033;
}

a {
    text-decoration: none;
    color: inherit;
}

.topo {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.topo-container,
.menu-container,
.secao,
.hero,
.rodape-container {
    width: min(1180px, 92%);
    margin: auto;
}

.topo-container {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
}

.logo-icone {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0f4c81, #00a6a6);
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
}

.logo-texto strong {
    display: block;
    font-size: 20px;
}

.logo-texto small {
    color: #667085;
    font-size: 12px;
}

.busca-topo {
    flex: 1;
    display: flex;
    background: #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.busca-topo input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 14px 16px;
    outline: none;
    font-size: 15px;
}

.busca-topo button {
    width: 52px;
    border: 0;
    background: #0f4c81;
    color: #fff;
    cursor: pointer;
}

.acoes-topo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.botao-localizacao,
.botao-loja {
    border: 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.botao-localizacao {
    background: #eef6ff;
    color: #0f4c81;
}

.botao-loja {
    background: #0f4c81;
    color: #fff;
}

.menu-categorias {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.menu-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 14px 0;
    color: #475467;
    font-weight: 700;
    font-size: 14px;
}

.hero {
    margin-top: 28px;
    min-height: 390px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(0, 166, 166, .38), transparent 34%),
        linear-gradient(135deg, #0f172a, #0f4c81);
    color: #fff;
    padding: 46px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    overflow: hidden;
}

.hero-etiqueta,
.secao-etiqueta {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 800;
    color: #00d4d4;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    max-width: 720px;
}

.hero p {
    margin-top: 18px;
    color: #dbeafe;
    font-size: 18px;
    max-width: 620px;
}

.busca-hero {
    margin-top: 28px;
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 18px;
    max-width: 680px;
}

.busca-hero input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 14px 16px;
    font-size: 16px;
}

.busca-hero button {
    border: 0;
    background: #00a6a6;
    color: #fff;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
}

.hero-informacoes {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #e0f2fe;
    font-size: 14px;
}

.hero-visual {
    position: relative;
    min-height: 300px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

.hero-card span {
    display: block;
    color: #e0f2fe;
    margin-bottom: 8px;
}

.hero-card strong {
    font-size: 20px;
}

.hero-card-1 {
    top: 20px;
    right: 10px;
    width: 260px;
}

.hero-card-2 {
    top: 135px;
    left: 10px;
    width: 260px;
}

.hero-card-3 {
    bottom: 10px;
    right: 65px;
    width: 260px;
}

.secao {
    padding: 44px 0;
}

.secao-cabecalho {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.secao-cabecalho h2 {
    font-size: 30px;
}

.secao-cabecalho p {
    color: #667085;
    margin-top: 6px;
}

.secao-cabecalho a {
    color: #0f4c81;
    font-weight: 800;
}

.secao-cinza {
    background: #eef2f7;
    width: 100%;
    max-width: none;
    padding-left: max(4%, calc((100% - 1180px) / 2));
    padding-right: max(4%, calc((100% - 1180px) / 2));
}

.destaque-vermelho {
    color: #e11d48;
}

.grade-categorias {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.categoria-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    transition: .2s;
}

.categoria-card:hover,
.produto-card:hover,
.loja-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .1);
}

.categoria-icone {
    font-size: 34px;
    margin-bottom: 12px;
}

.categoria-card strong {
    display: block;
    font-size: 17px;
}

.categoria-card span {
    display: block;
    color: #667085;
    margin-top: 5px;
    font-size: 14px;
}

.grade-produtos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.produto-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: .2s;
}

.produto-imagem {
    height: 205px;
    background: linear-gradient(135deg, #f8fafc, #dbeafe);
    display: grid;
    place-items: center;
    position: relative;
}

.imagem-placeholder {
    font-size: 76px;
}

.selo-promocao,
.selo-novo {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.selo-promocao {
    background: #e11d48;
}

.selo-novo {
    background: #0f4c81;
}

.produto-conteudo {
    padding: 18px;
}

.produto-categoria {
    display: block;
    color: #0f4c81;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.produto-conteudo h3 {
    font-size: 18px;
    line-height: 1.25;
    min-height: 44px;
}

.produto-preco-antigo {
    margin-top: 12px;
    color: #98a2b3;
    text-decoration: line-through;
}

.produto-preco {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    margin-top: 4px;
}

.produto-loja,
.produto-distancia {
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
}

.botao-produto {
    display: block;
    margin-top: 16px;
    text-align: center;
    background: #0f4c81;
    color: #fff;
    padding: 12px;
    border-radius: 14px;
    font-weight: 800;
}

.grade-lojas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.loja-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e5e7eb;
    transition: .2s;
}

.loja-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f4c81, #00a6a6);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.loja-informacoes h3 {
    font-size: 18px;
}

.loja-informacoes span {
    display: block;
    color: #667085;
    margin: 4px 0;
}

.loja-informacoes strong {
    color: #0f4c81;
}

.rodape {
    background: #0f172a;
    color: #fff;
    margin-top: 40px;
}

.rodape-container {
    padding: 38px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.rodape p,
.rodape a {
    color: #cbd5e1;
}

.rodape a {
    display: block;
    margin-top: 10px;
}

.rodape-logo {
    font-size: 22px;
}

.rodape-final {
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    padding: 18px;
    color: #cbd5e1;
}

@media (max-width: 980px) {
    .topo-container {
        height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
    }

    .logo {
        min-width: auto;
    }

    .busca-topo {
        order: 3;
        width: 100%;
        flex: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 34px 24px;
    }

    .hero-visual {
        display: none;
    }

    .grade-categorias {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 640px) {
    .acoes-topo {
        width: 100%;
    }

    .botao-localizacao,
    .botao-loja {
        flex: 1;
        text-align: center;
        font-size: 13px;
    }

    .botao-localizacao span {
        display: none;
    }

    .menu-container {
        font-size: 13px;
    }

    .hero {
        margin-top: 16px;
        border-radius: 22px;
    }

    .busca-hero {
        display: block;
    }

    .busca-hero input {
        width: 100%;
    }

    .busca-hero button {
        width: 100%;
        padding: 14px;
        margin-top: 8px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .secao {
        padding: 34px 0;
    }

    .secao-cabecalho {
        display: block;
    }

    .secao-cabecalho a {
        display: inline-block;
        margin-top: 12px;
    }

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

    .grade-produtos,
    .grade-lojas {
        grid-template-columns: 1fr;
    }
}

.produto-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loja-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.loja-card {
    color: inherit;
    cursor: pointer;
}

.loja-card:hover h3 {
    color: #0f4c81;
}

/* ==========================================================
   LINKS DAS LOJAS E PRODUTOS
========================================================== */

.loja-card {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.loja-card:hover h3 {
    color: #0f4c81;
}

.produto-loja-link {
    display: block;
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
}

.produto-loja-link:hover {
    color: #0f4c81;
}

.produto-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.loja-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* ==========================================================
   PÁGINA PÚBLICA DA LOJA
========================================================== */

html {
    scroll-behavior: smooth;
}

.pagina-loja {
    background: #f4f7fb;
}


/* CAPA */

.perfil-loja {
    width: min(1240px, 94%);
    margin: 24px auto 0;
}

.perfil-loja-capa {
    min-height: 390px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #0f4c81;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.perfil-loja-capa-img,
.perfil-loja-capa-padrao {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.perfil-loja-capa-img {
    object-fit: cover;
}

.perfil-loja-capa-padrao {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(0, 212, 212, 0.5),
            transparent 28%
        ),
        radial-gradient(
            circle at 65% 100%,
            rgba(59, 130, 246, 0.45),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071527,
            #0f4c81
        );
}

.perfil-loja-degrade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 12, 25, 0.95) 0%,
            rgba(4, 12, 25, 0.72) 47%,
            rgba(4, 12, 25, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 12, 25, 0.35),
            transparent
        );
}

.perfil-loja-conteudo {
    min-height: 390px;
    position: relative;
    z-index: 2;
    padding: 42px;
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    color: #ffffff;
}

.perfil-loja-logo {
    width: 125px;
    height: 125px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    background: #ffffff;
    color: #0f4c81;
    display: grid;
    place-items: center;
    font-size: 38px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.perfil-loja-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfil-loja-etiquetas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.perfil-loja-selo,
.perfil-loja-cidade {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

.perfil-loja-selo {
    background: #00a6a6;
    border-color: #00a6a6;
}

.perfil-loja-identidade h1 {
    margin-top: 12px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
}

.perfil-loja-identidade p {
    max-width: 690px;
    margin-top: 13px;
    color: #e0ecf8;
    font-size: 17px;
    line-height: 1.55;
}

.perfil-loja-resumo {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.perfil-loja-resumo span {
    padding: 8px 11px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #e7f4ff;
    font-size: 13px;
}

.perfil-loja-acoes {
    min-width: 190px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.acao-loja {
    min-height: 47px;
    padding: 13px 17px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: 0.2s;
}

.acao-loja:hover {
    transform: translateY(-2px);
}

.acao-whatsapp {
    background: #16a34a;
    color: #ffffff;
}

.acao-rota {
    background: #ffffff;
    color: #0f4c81;
}

.acao-instagram {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}


/* MENU DA LOJA */

.navegacao-loja {
    width: min(1240px, 94%);
    margin: 14px auto 0;
    position: sticky;
    top: 78px;
    z-index: 8;
}

.navegacao-loja-container {
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.navegacao-loja a {
    padding: 10px 15px;
    border-radius: 10px;
    color: #475467;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.navegacao-loja a:hover {
    background: #eef6ff;
    color: #0f4c81;
}


/* INFORMAÇÕES RÁPIDAS */

.secao-info-loja {
    padding-top: 28px;
    padding-bottom: 22px;
}

.faixa-info-loja {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.info-loja-item {
    min-width: 0;
    padding: 23px;
    display: flex;
    gap: 14px;
    border-right: 1px solid #e2e8f0;
}

.info-loja-item:last-child {
    border-right: 0;
}

.info-loja-icone {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 13px;
    background: #eef6ff;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.info-loja-item small,
.info-loja-item strong,
.info-loja-item span {
    display: block;
}

.info-loja-item small {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.info-loja-item strong {
    margin-top: 4px;
    color: #172033;
    font-size: 15px;
}

.info-loja-item span {
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
}


/* CATEGORIAS */

.categorias-loja-lista {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.categoria-loja-item {
    padding: 18px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    transition: 0.2s;
}

.categoria-loja-item:hover {
    transform: translateY(-3px);
    border-color: #b8d6ed;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.categoria-loja-icone {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef6ff, #ddf8f8);
    display: grid;
    place-items: center;
    font-size: 25px;
}

.categoria-loja-item strong,
.categoria-loja-item small {
    display: block;
}

.categoria-loja-item small {
    margin-top: 3px;
    color: #667085;
}

.categoria-loja-seta {
    color: #0f4c81;
    font-size: 21px;
    font-weight: 900;
}


/* PRODUTOS E FILTROS */

.secao-produtos-loja {
    width: 100%;
    max-width: none;
    padding-left: max(4%, calc((100% - 1180px) / 2));
    padding-right: max(4%, calc((100% - 1180px) / 2));
    background: #f8fafc;
}

.ordenacao-loja {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    font-size: 14px;
}

.ordenacao-loja select {
    min-height: 42px;
    padding: 0 34px 0 12px;
    border: 1px solid #d7dee8;
    border-radius: 11px;
    background: #ffffff;
    color: #172033;
}

.produtos-loja-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
}

.filtros-loja {
    padding: 20px;
    position: sticky;
    top: 150px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
}

.filtro-loja-cabecalho {
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.filtro-loja-grupo {
    padding: 17px 0;
    border-bottom: 1px solid #e2e8f0;
}

.filtro-loja-grupo label,
.filtro-loja-grupo > strong {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
}

.filtro-loja-grupo input[type="search"],
.filtro-loja-grupo input[type="number"] {
    width: 100%;
    min-height: 42px;
    padding: 10px;
    border: 1px solid #d7dee8;
    border-radius: 10px;
    outline: none;
}

.filtro-checkbox {
    padding: 5px 0;
    display: flex !important;
    align-items: center;
    gap: 9px;
    color: #475467;
    cursor: pointer;
}

.filtro-checkbox input {
    width: 16px;
    height: 16px;
}

.filtro-precos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.botao-aplicar-filtros {
    width: 100%;
    margin-top: 17px;
    padding: 13px;
    border: 0;
    border-radius: 11px;
    background: #0f4c81;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

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

.produto-meta {
    margin-top: 7px;
    color: #667085;
    font-size: 13px;
}


/* SOBRE A LOJA */

.sobre-loja-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 25px;
}

.sobre-loja-texto,
.sobre-loja-mapa {
    min-width: 0;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
}

.sobre-loja-texto h2 {
    font-size: 30px;
}

.sobre-loja-texto > p {
    margin-top: 15px;
    color: #667085;
    line-height: 1.65;
}

.sobre-loja-dados {
    margin-top: 22px;
    display: grid;
    gap: 13px;
}

.sobre-loja-dados div {
    padding: 14px;
    border-radius: 13px;
    background: #f8fafc;
}

.sobre-loja-dados strong,
.sobre-loja-dados span {
    display: block;
}

.sobre-loja-dados span {
    margin-top: 4px;
    color: #667085;
    line-height: 1.5;
}

.mapa-loja-placeholder {
    min-height: 100%;
    padding: 30px;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 166, 166, 0.2),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #eaf2fa,
            #f8fafc
        );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mapa-loja-placeholder > span {
    font-size: 54px;
}

.mapa-loja-placeholder h3 {
    margin-top: 12px;
}

.mapa-loja-placeholder p {
    margin-top: 7px;
    color: #667085;
    line-height: 1.5;
}

.mapa-loja-placeholder a {
    margin-top: 18px;
    padding: 12px 17px;
    border-radius: 11px;
    background: #0f4c81;
    color: #ffffff;
    font-weight: 800;
}


/* RESPONSIVO */

@media (max-width: 1050px) {
    .perfil-loja-conteudo {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .perfil-loja-logo {
        width: 105px;
        height: 105px;
    }

    .perfil-loja-acoes {
        grid-column: 1 / -1;
        min-width: 0;
        flex-direction: row;
    }

    .perfil-loja-acoes a {
        flex: 1;
    }

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

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

@media (max-width: 800px) {
    .navegacao-loja {
        top: 0;
    }

    .perfil-loja-capa,
    .perfil-loja-conteudo {
        min-height: 460px;
    }

    .perfil-loja-conteudo {
        padding: 28px;
        grid-template-columns: 1fr;
        align-content: end;
    }

    .perfil-loja-logo {
        width: 92px;
        height: 92px;
        border-radius: 22px;
    }

    .perfil-loja-acoes {
        grid-column: auto;
    }

    .faixa-info-loja {
        grid-template-columns: 1fr;
    }

    .info-loja-item {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .info-loja-item:last-child {
        border-bottom: 0;
    }

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

    .filtros-loja {
        position: static;
    }

    .sobre-loja-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .perfil-loja {
        width: 94%;
        margin-top: 14px;
    }

    .perfil-loja-capa {
        border-radius: 22px;
    }

    .perfil-loja-identidade h1 {
        font-size: 36px;
    }

    .perfil-loja-acoes {
        flex-direction: column;
    }

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

    .grade-produtos-loja {
        grid-template-columns: 1fr;
    }

    .ordenacao-loja {
        margin-top: 15px;
        align-items: flex-start;
        flex-direction: column;
    }

    .ordenacao-loja select {
        width: 100%;
    }

    .sobre-loja-texto,
    .sobre-loja-mapa {
        padding: 21px;
    }
}

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

.logo-ACHOAKI {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
}

.logo-ACHOAKI-img {
    width: 150px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
}

.logo-ACHOAKI .logo-texto small {
    display: block;
    max-width: 130px;
    color: #667085;
    font-size: 11px;
    line-height: 1.3;
}

@media (max-width: 640px) {

    .logo-ACHOAKI-img {
        width: 120px;
        height: 40px;
    }

    .logo-ACHOAKI .logo-texto {
        display: none;
    }
}

/* ==========================================================
   IDENTIDADE VISUAL ACHOAKI
========================================================== */

:root {
    --ACHOAKI-azul: #0D1B2E;
    --ACHOAKI-azul-botao: #0F568F;

    --ACHOAKI-laranja: #FF7A1A;
    --ACHOAKI-laranja-hover: #E96808;

    --ACHOAKI-fundo: #F5F7FB;
}


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

.busca-topo button {
    background: var(--ACHOAKI-azul-botao);
}

.botao-localizacao {
    background: #FFF3E8;
    color: var(--ACHOAKI-azul);
}

.botao-loja {
    background: var(--ACHOAKI-azul-botao);
}


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

.hero {
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 122, 26, 0.22),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #0D1B2E,
            #123E63
        );
}


/* ETIQUETAS */

.hero-etiqueta,
.secao-etiqueta {
    color: var(--ACHOAKI-laranja);
}


/* BOTÃO BUSCAR */

.busca-hero button {
    background: var(--ACHOAKI-laranja);
    transition: 0.2s;
}

.busca-hero button:hover {
    background: var(--ACHOAKI-laranja-hover);
}


/* ==========================================================
   CARDS DO BANNER
========================================================== */

.hero-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 122, 26, 0.32);
}

.hero-card span {
    color: #ffffff;
}


/* ==========================================================
   LINKS
========================================================== */

.secao-cabecalho a {
    color: var(--ACHOAKI-azul-botao);
}


/* ==========================================================
   CATEGORIAS
========================================================== */

.categoria-card:hover {
    border-color: rgba(255, 122, 26, 0.5);
}


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

.produto-categoria {
    color: var(--ACHOAKI-laranja);
}

.botao-produto {
    background: var(--ACHOAKI-azul-botao);
}

.botao-produto:hover {
    background: var(--ACHOAKI-azul);
}

.selo-novo {
    background: var(--ACHOAKI-laranja);
}


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

.loja-logo {
    background: linear-gradient(
        135deg,
        var(--ACHOAKI-azul),
        var(--ACHOAKI-laranja)
    );
}

.loja-informacoes strong,
.loja-card:hover h3,
.produto-loja-link:hover {
    color: var(--ACHOAKI-laranja);
}


/* ==========================================================
   PÁGINA DA LOJA
========================================================== */

.perfil-loja-capa-padrao {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 122, 26, 0.35),
            transparent 28%
        ),
        radial-gradient(
            circle at 65% 100%,
            rgba(15, 86, 143, 0.45),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071527,
            #0D1B2E
        );
}

.perfil-loja-selo {
    background: var(--ACHOAKI-laranja);
    border-color: var(--ACHOAKI-laranja);
}

.acao-rota {
    color: var(--ACHOAKI-azul-botao);
}


/* MENU DA LOJA */

.navegacao-loja a:hover {
    background: #FFF3E8;
    color: var(--ACHOAKI-laranja);
}


/* CATEGORIAS DA LOJA */

.categoria-loja-icone {
    background: linear-gradient(
        135deg,
        #FFF3E8,
        #FFE2C7
    );
}

.categoria-loja-item:hover {
    border-color: var(--ACHOAKI-laranja);
}

.categoria-loja-seta {
    color: var(--ACHOAKI-laranja);
}


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

.botao-aplicar-filtros {
    background: var(--ACHOAKI-azul-botao);
}

.botao-aplicar-filtros:hover {
    background: var(--ACHOAKI-azul);
}


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

.rodape {
    background: var(--ACHOAKI-azul);
}

/* ==========================================================
   CARROSSEL DE BANNERS
========================================================== */

.banner-carousel {
    width: 100%;
    max-width: 1920px;

    position: relative;
    overflow: hidden;

    margin: 0 auto;

    background: #0d1b2e;
}


.banner-carousel-track {
    width: 100%;

    position: relative;
}


.banner-slide {
    width: 100%;

    display: none;
}


.banner-slide.ativo {
    display: block;

    animation: bannerAparecer 0.5s ease;
}


.banner-link {
    width: 100%;

    display: block;
}


.banner-link img {
    width: 100%;
    height: auto;

    aspect-ratio: 1920 / 600;

    display: block;

    object-fit: cover;
    object-position: center;
}


@keyframes bannerAparecer {

    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }

}


/* ==========================================================
   SETAS
========================================================== */

.banner-seta {
    width: 48px;
    height: 48px;

    position: absolute;
    top: 50%;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 0;
    border-radius: 50%;

    background: rgba(13, 27, 46, 0.72);

    color: #ffffff;

    font-size: 38px;
    line-height: 1;

    cursor: pointer;

    transition: 0.2s;
}


.banner-seta:hover {
    background: #ff7a1a;
}


.banner-seta-anterior {
    left: 24px;
}


.banner-seta-proximo {
    right: 24px;
}


/* ==========================================================
   INDICADORES
========================================================== */

.banner-indicadores {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 10;

    display: flex;

    gap: 8px;

    transform: translateX(-50%);
}


.banner-indicador {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: 0.25s;
}


.banner-indicador.ativo {
    width: 30px;

    background: #ff7a1a;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 768px) {

    .banner-link img {
        min-height: 220px;

        aspect-ratio: auto;

        object-fit: cover;
    }


    .banner-seta {
        width: 38px;
        height: 38px;

        font-size: 30px;
    }


    .banner-seta-anterior {
        left: 10px;
    }


    .banner-seta-proximo {
        right: 10px;
    }


    .banner-indicadores {
        bottom: 10px;
    }

}

/* ==========================================================
   CORREÇÃO - BANNER LARGURA TOTAL
========================================================== */

.banner-carousel {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;

    position: relative;
    overflow: hidden;

    background: #0d1b2e;
}

.banner-carousel-track {
    width: 100%;
}

.banner-slide {
    width: 100%;
}

.banner-link {
    display: block;
    width: 100%;
}

.banner-link img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1920 / 600;

    object-fit: cover;
    object-position: center;
}

/* ==========================================================
   MENU PRINCIPAL ACHOAKI
========================================================== */

.menu-ACHOAKI {
    position: relative;

    background: #0d1b2e;
    border-bottom: 0;

    z-index: 30;
}


.menu-ACHOAKI .menu-container {
    min-height: 52px;

    padding: 0;

    display: flex;
    align-items: center;

    gap: 8px;
}


.menu-ACHOAKI .menu-container > a {
    height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    color: #ffffff;

    border-radius: 0;

    transition: 0.2s;
}


.menu-ACHOAKI .menu-container > a:hover {
    background: rgba(255, 255, 255, 0.08);

    color: #ff7a1a;
}


/* ==========================================================
   BOTÃO TODAS AS CATEGORIAS
========================================================== */

.botao-todas-categorias {
    height: 52px;

    padding: 0 21px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 0;

    background: #ff7a1a;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    transition: 0.2s;
}


.botao-todas-categorias:hover {
    background: #e96808;
}


.icone-menu {
    font-size: 20px;
}


.seta-menu {
    margin-left: 6px;

    font-size: 12px;
}


/* ==========================================================
   FUNDO ESCURO
========================================================== */

.mega-menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 80;

    visibility: hidden;

    background: rgba(7, 21, 39, 0.55);

    opacity: 0;

    transition: 0.25s;
}


.mega-menu-overlay.ativo {
    visibility: visible;

    opacity: 1;
}


/* ==========================================================
   MEGA MENU
========================================================== */

.mega-menu {
    width: 100%;

    position: absolute;
    left: 0;

    z-index: 90;

    visibility: hidden;

    transform: translateY(-12px);

    background: #ffffff;

    opacity: 0;

    box-shadow:
        0 25px 60px
        rgba(15, 23, 42, 0.18);

    transition: 0.25s;
}


.mega-menu.ativo {
    visibility: visible;

    transform: translateY(0);

    opacity: 1;
}


.mega-menu-container {
    width: min(1380px, 94%);

    margin: auto;

    padding: 28px 0 36px;
}


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

.mega-menu-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 26px;
}


.mega-menu-cabecalho span {
    color: #ff7a1a;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.13em;
}


.mega-menu-cabecalho h2 {
    margin-top: 5px;

    color: #0d1b2e;

    font-size: 26px;
}


.mega-menu-fechar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: #f2f4f7;
    color: #0d1b2e;

    font-size: 18px;

    cursor: pointer;
}


/* ==========================================================
   CONTEÚDO
========================================================== */

.mega-menu-conteudo {
    display: grid;

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

    gap: 34px;
}


.mega-menu-categorias {
    display: grid;

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

    gap: 30px 34px;
}


.mega-menu-coluna {
    min-width: 0;
}


.mega-menu-categoria-topo {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;
}


.mega-menu-icone {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #fff3e8;

    font-size: 21px;
}


.mega-menu-categoria-topo strong {
    color: #0d1b2e;

    font-size: 16px;
}


.mega-menu-subcategorias {
    display: grid;

    gap: 8px;
}


.mega-menu-subcategorias a {
    color: #667085;

    font-size: 14px;

    transition: 0.2s;
}


.mega-menu-subcategorias a:hover {
    color: #ff7a1a;

    transform: translateX(3px);
}


/* ==========================================================
   DESTAQUE LATERAL
========================================================== */

.mega-menu-destaque {
    min-height: 260px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 122, 26, 0.35),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #0d1b2e,
            #123e63
        );

    color: #ffffff;
}


.mega-menu-destaque-etiqueta {
    color: #ff7a1a;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.12em;
}


.mega-menu-destaque h3 {
    margin-top: 9px;

    font-size: 27px;
    line-height: 1.08;
}


.mega-menu-destaque p {
    margin-top: 10px;

    color: #cbd5e1;

    font-size: 14px;
    line-height: 1.5;
}


.mega-menu-destaque a {
    width: fit-content;

    margin-top: 20px;
    padding: 11px 16px;

    border-radius: 10px;

    background: #ff7a1a;

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 1000px) {

    .mega-menu-conteudo {
        grid-template-columns: 1fr;
    }

    .mega-menu-destaque {
        display: none;
    }

    .mega-menu-categorias {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }
}


@media (max-width: 700px) {

    .menu-ACHOAKI .menu-container > a {
        padding: 0 12px;
    }

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


@media (max-width: 500px) {

    .mega-menu-categorias {
        grid-template-columns: 1fr;
    }
}

.categoria-icone-img {
    width: 54px;
    height: 54px;

    display: block;

    object-fit: contain;
}

/* ==========================================================
   CORREÇÃO DOS ÍCONES DAS CATEGORIAS
========================================================== */

.grade-categorias {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(170px, 1fr)
        );

    gap: 16px;
}


.categoria-card {
    min-height: 165px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    background: #ffffff;

    border: 1px solid #e0e5ec;
    border-radius: 22px;

    overflow: hidden;
}


.categoria-icone {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    background: #fff6ee;

    font-size: 32px;
}


.categoria-icone-img {
    width: 56px;
    height: 56px;

    display: block;

    object-fit: contain;

    border-radius: 12px;
}


.categoria-card strong {
    display: block;

    color: #0d1b2e;

    font-size: 17px;
    line-height: 1.2;
}


.categoria-card > span {
    margin-top: 6px;

    color: #667085;

    font-size: 14px;
}


.categoria-card:hover {
    border-color: #ff7a1a;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(15, 23, 42, 0.07);
}

/* ==========================================================
   CARDS DE PRODUTOS DA HOME - PADRÃO ACHOAKI
========================================================== */

.grade-produtos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* CARD */

.grade-produtos .produto-card {
    min-width: 0;
    height: 560px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;

    transition: 0.2s;
}

/* IMAGEM */

.grade-produtos .produto-imagem {
    width: 100%;

    height: 310px;
    min-height: 310px;
    max-height: 310px;

    padding: 16px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #ffffff;
    border-bottom: 1px solid #edf0f4;
}

.grade-produtos .produto-foto {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    display: block;

    object-fit: contain !important;
    object-position: center !important;
}

/* PLACEHOLDER */

.grade-produtos .imagem-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8fafc;

    font-size: 60px;
}

/* CONTEÚDO */

.grade-produtos .produto-conteudo {
    min-width: 0;

    padding: 15px 18px 18px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.grade-produtos .produto-categoria {
    min-height: 18px;

    margin-bottom: 0;

    overflow: hidden;

    color: #0f568f;

    font-size: 12px;
    font-weight: 800;

    line-height: 18px;
    letter-spacing: 0.04em;
}

.grade-produtos .produto-conteudo h3 {
    min-height: 48px;
    max-height: 48px;

    margin: 6px 0 0;

    overflow: hidden;

    color: #172033;

    font-size: 17px;
    line-height: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.grade-produtos .produto-preco-antigo {
    min-height: 18px;

    margin-top: 5px;

    color: #98a2b3;

    font-size: 13px;
    line-height: 18px;

    text-decoration: line-through;
}

.grade-produtos .produto-preco {
    min-height: 32px;

    margin-top: 2px;

    color: #101828;

    font-size: 25px;
    font-weight: 900;

    line-height: 32px;
}

.grade-produtos .produto-loja,
.grade-produtos .produto-loja-link,
.grade-produtos .produto-distancia {
    margin-top: 5px;

    color: #667085;

    font-size: 12px;
}

/* BOTÃO */

.grade-produtos .botao-produto {
    width: 100%;

    min-height: 48px;

    margin-top: auto;
    padding: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #0f568f;
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}

/* RESPONSIVO */

@media (max-width: 1050px) {

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

@media (max-width: 600px) {

    .grade-produtos {
        grid-template-columns: 1fr;
    }

    .grade-produtos .produto-card {
        height: 540px;
    }

    .grade-produtos .produto-imagem {
        height: 290px;
        min-height: 290px;
        max-height: 290px;
    }
}

/* ==========================================================
   EXPERIÊNCIA MOBILE ACHOAKI
========================================================== */

@media (max-width: 768px) {

    .topo {
        position: relative;
    }

    .topo-container {
        width: 100%;
        padding: 18px 16px;
        gap: 14px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .logo,
    .logo-ACHOAKI {
        min-width: 0;
        width: auto;
    }

    .logo-ACHOAKI-img {
        width: 170px;
        height: auto;
        max-height: 58px;
    }

    .logo-ACHOAKI .logo-texto {
        display: none;
    }

    .acoes-topo {
        width: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .botao-localizacao,
    .botao-loja {
        width: 100%;
        min-height: 54px;
        padding: 12px 10px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-size: 14px;
        text-align: center;
    }

    .botao-localizacao span {
        display: inline;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .busca-topo {
        width: 100%;
        grid-column: 1 / -1;
        grid-row: 3;
        min-height: 58px;
        border-radius: 17px;
    }

    .busca-topo input {
        min-width: 0;
        padding: 16px;
        font-size: 16px;
    }

    .busca-topo button {
        width: 62px;
        flex-shrink: 0;
        font-size: 18px;
    }

    .menu-categorias,
    .menu-ACHOAKI {
        width: 100%;
        overflow: visible;
        padding: 0;
        background: #0d1b2e;
    }

    .menu-categorias .menu-container,
    .menu-ACHOAKI .menu-container {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: 0;
        padding: 10px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        white-space: normal;
    }

    .menu-categorias .menu-container > a,
    .menu-ACHOAKI .menu-container > a,
    .menu-categorias .botao-todas-categorias,
    .menu-ACHOAKI .botao-todas-categorias {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        height: auto;
        padding: 10px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 10px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .menu-categorias .botao-todas-categorias,
    .menu-ACHOAKI .botao-todas-categorias {
        grid-column: 1 / -1;
        min-height: 50px;
        background: #ff7a1a;
    }

    .menu-categorias .menu-container > a:last-child,
    .menu-ACHOAKI .menu-container > a:last-child {
        grid-column: 1 / -1;
    }

    .menu-categorias .menu-container > a:hover,
    .menu-ACHOAKI .menu-container > a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-item-ativo {
        background: rgba(255, 122, 26, 0.18) !important;
        color: #ffb277 !important;
    }

    .banner-carousel {
        width: 100%;
        min-height: 0;
    }

    .banner-link img {
        width: 100%;
        height: auto;
        min-height: 190px;
        max-height: 260px;
        aspect-ratio: 16 / 7;
        object-fit: cover;
        object-position: center;
    }

    .banner-seta {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .banner-seta-anterior {
        left: 8px;
    }

    .banner-seta-proximo {
        right: 8px;
    }

    .secao {
        width: 100%;
        padding: 32px 14px;
    }

    .secao-cinza,
    .secao-produtos-loja {
        padding-left: 14px;
        padding-right: 14px;
    }

    .secao-cabecalho {
        display: block;
        margin-bottom: 20px;
    }

    .secao-cabecalho h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .secao-cabecalho p {
        font-size: 15px;
        line-height: 1.45;
    }

    .secao-cabecalho a {
        display: inline-block;
        margin-top: 12px;
    }

    .grade-produtos,
    .grade-produtos-loja {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .grade-produtos .produto-card {
        height: auto;
        min-height: 430px;
        border-radius: 15px;
    }

    .grade-produtos .produto-imagem {
        height: 190px;
        min-height: 190px;
        max-height: 190px;
        padding: 9px;
    }

    .grade-produtos .produto-conteudo {
        padding: 12px;
    }

    .grade-produtos .produto-categoria {
        font-size: 10px;
        line-height: 15px;
    }

    .grade-produtos .produto-conteudo h3 {
        min-height: 42px;
        max-height: 42px;
        font-size: 14px;
        line-height: 21px;
    }

    .grade-produtos .produto-preco {
        min-height: 28px;
        font-size: 20px;
        line-height: 28px;
    }

    .grade-produtos .produto-preco-antigo,
    .grade-produtos .produto-loja,
    .grade-produtos .produto-loja-link,
    .grade-produtos .produto-distancia,
    .distancia-usuario {
        font-size: 11px;
    }

    .grade-produtos .botao-produto {
        min-height: 42px;
        padding: 9px 6px;
        border-radius: 11px;
        font-size: 12px;
    }

    .grade-lojas {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .loja-card {
        padding: 15px;
    }

    .grade-categorias {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .categoria-card {
        min-height: 135px;
        padding: 15px;
        border-radius: 16px;
    }

    .categoria-icone {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .categoria-icone-img {
        width: 45px;
        height: 45px;
    }

    .mega-menu {
        position: fixed;
        inset: 0;
        overflow-y: auto;
    }

    .mega-menu-container {
        width: 100%;
        min-height: 100%;
        padding: 22px 16px 35px;
    }

    .mega-menu-categorias {
        grid-template-columns: 1fr 1fr;
        gap: 22px 14px;
    }

    .mega-menu-cabecalho h2 {
        font-size: 23px;
    }

    .mega-menu-destaque {
        display: none;
    }
}

@media (max-width: 390px) {

    .topo-container {
        padding: 15px 12px;
    }

    .logo-ACHOAKI-img {
        width: 150px;
    }

    .botao-localizacao,
    .botao-loja {
        min-height: 50px;
        font-size: 12px;
    }

    .menu-categorias .menu-container,
    .menu-ACHOAKI .menu-container {
        padding: 8px;
        gap: 6px;
    }

    .menu-categorias .menu-container > a,
    .menu-ACHOAKI .menu-container > a,
    .menu-categorias .botao-todas-categorias,
    .menu-ACHOAKI .botao-todas-categorias {
        min-height: 44px;
        padding: 8px 5px;
        font-size: 11px;
    }

    .grade-produtos .produto-imagem {
        height: 165px;
        min-height: 165px;
        max-height: 165px;
    }

    .grade-produtos .produto-card {
        min-height: 400px;
    }

    .grade-produtos .produto-conteudo h3 {
        font-size: 13px;
    }

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

    .mega-menu-categorias {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   CARDS COMPACTOS DE PROFISSIONAIS E SERVIÇOS NO CELULAR
========================================================== */

@media (max-width: 768px) {

    .ps-grade {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ps-card {
        display: block;
        overflow: hidden;
        border-radius: 16px;
    }

    /* Esconde a foto no celular */
    .ps-card .ps-foto {
        display: none;
    }

    .ps-card .ps-conteudo {
        padding: 18px;
    }

    .ps-card .ps-etiqueta {
        font-size: 11px;
    }

    .ps-card h3 {
        margin: 7px 0 5px;
        font-size: 21px;
        line-height: 1.2;
    }

    .ps-card p {
        font-size: 15px;
    }

    .ps-card .distancia-usuario {
        margin-top: 12px;
        font-size: 13px;
    }

    .ps-card .ps-info {
        margin-top: 12px;
        gap: 6px;
    }

    .ps-card .ps-info span {
        padding: 6px 8px;
        font-size: 11px;
    }
}