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

:root {
    --green: #3bb54a;
    --green-dark: #238a31;
    --bg: #f6f8f7;
    --text: #202522;
    --muted: #68716b;
    --border: #e6ebe7;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-width: 320px;
}

.topo {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 64px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.logo {

    color: #fff;

    text-decoration: none;

    font-weight: 900;

    font-size: 25px;

    line-height: .85;

    text-shadow: 0 2px 6px #0008;

    position: relative;

  left: max(40px, calc((100% - 1100px) / 2));

}

.logo span {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: 4px;
}

.cidade-topo-wrap{display:flex;align-items:center;margin-right:8px}.seletor-cidade{display:flex;align-items:center;gap:5px;margin-right:8px;padding:5px 9px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(0,0,0,.18);backdrop-filter:blur(6px);color:#fff;font-size:12px;font-weight:700;white-space:nowrap}.seletor-cidade select{border:0;background:transparent;color:#fff;font:inherit;outline:none;cursor:pointer;max-width:150px}.seletor-cidade select option{color:#111;background:#fff}.logo-achou{display:block}.logo #logoCidade{display:block;font-size:12px;letter-spacing:3px;font-weight:500;margin-top:4px}@media(max-width:900px){.topo{padding:10px 18px}.topo nav{gap:10px}.topo nav a:nth-child(n+4){display:none}.seletor-cidade{margin-right:4px}.seletor-cidade select{max-width:105px;font-size:11px}.logo{left:0;font-size:20px}}@media(max-width:600px){.topo{align-items:flex-start}.topo nav{display:none}.cidade-topo-wrap{position:absolute;right:12px;top:72px;margin:0}.seletor-cidade{position:static;right:12px;top:72px;background:rgba(0,0,0,.48)}}

.topo nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.topo nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-shadow: 0 1px 5px #000;
    font-weight: 600;
    padding: 8px 0;
}

.topo nav a.ativo {
    border-bottom: 2px solid #4de75f;
}

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

.top-btn,
.top-btn-primary,
.btn-secundario {
    border: 1px solid #ffffffaa;
    background: #0004;
    color: #fff;
    border-radius: 22px;
    padding: 8px 13px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.top-btn-primary {
    background: var(--green);
    border-color: var(--green);
}

.top-btn-small {
    padding: 7px 10px;
}

.empresa-logada-topo {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #0006;
    border: 1px solid #fff4;
    color: #fff;
    border-radius: 24px;
    padding: 4px 10px 4px 4px;
    cursor: pointer;
    max-width: 180px;
}

.empresa-logada-topo span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logo-bola {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    background: var(--green);
    border-radius: 50%;
    font-weight: 900;
}

.banner {
    min-height: 205px;
    padding: 70px 40px 25px;
    background:
        linear-gradient(90deg, #07120ddd, #07120d99),
        url('assets/horizontina_banner.webp') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner-conteudo {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.texto h1 {
    font-size: 28px;
    line-height: 1.05;
}

.texto h1 span {
    color: #4de75f;
}

.busca-area {
    width: min(500px, 100%);
}

.caixa-busca {
    height: 46px;
    background: #fff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    padding: 4px 5px 4px 14px;
    box-shadow: 0 8px 24px #0005;
}

.caixa-busca img {
    width: 18px;
    height: 18px;
    color: #777;
}

.caixa-busca input {
    border: 0;
    outline: 0;
    flex: 1;
    padding: 0 10px;
    font-size: 14px;
    min-width: 0;
}

.caixa-busca button,
.btn-principal {
    border: 0;
    background: var(--green);
    color: #fff;
    border-radius: 24px;
    padding: 10px 17px;
    font-weight: 800;
    cursor: pointer;
}

.caixa-busca button:hover,
.btn-principal:hover {
    background: var(--green-dark);
}

.exemplos {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
    font-size: 11px;
}

.exemplos button {
    border: 1px solid #fff4;
    background: #0005;
    color: #fff;
    border-radius: 15px;
    padding: 4px 8px;
    cursor: pointer;
}

.exemplos button:hover {
    background: #0008;
}

#conteudo-principal {
    padding: 28px 40px;
    min-height: 540px;
}

.home-wrapper,
.page-container {
    max-width: 1100px;
    margin: auto;
}

.barra-categorias {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    overflow: auto;
    box-shadow: 0 5px 22px #0000000a;
    margin-bottom: 18px;
}

.cat-item {
    border: 0;
    background: transparent;
    min-width: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.cat-item .ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f5f1;
    display: grid;
    place-items: center;
    font-size: 19px;
}

.cat-item span {
    font-size: 11px;
    font-weight: 700;
    color: #38403a;
}

.grid-principal {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.bloco,
.beneficios,
.contato-card,
.plano,
.form-card,
.hero-empresas {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 5px 22px #0000000a;
}

.bloco {
    padding: 18px;
}

.bloco-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.bloco-header h2 {
    font-size: 15px;
}

.bloco-header a {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

.inicio-chamada {
    min-height: 220px;
    border-radius: 12px;
    padding: 25px;
    background: linear-gradient(135deg, #effaf0, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 1.7px;
    color: var(--green-dark);
    font-weight: 900;
}

.inicio-chamada h2 {
    font-size: 25px;
    max-width: 440px;
    margin: 6px 0;
}

.inicio-chamada p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 16px;
    max-width: 470px;
}

.inicio-ilustracao {
    font-size: 70px;
    opacity: .8;
}

.mapa-box {
    height: 250px;
    border-radius: 12px;
    background: linear-gradient(145deg, #e9eef0, #dce5e8);
    position: relative;
    overflow: hidden;
    border: 1px solid #d5dfe3;
}

.mapa-box:before,
.mapa-box:after {
    content: "";
    position: absolute;
    background: #fff8;
}

.mapa-box:before {
    height: 12px;
    width: 140%;
    transform: rotate(-25deg);
    top: 45%;
    left: -20%;
}

.mapa-box:after {
    height: 10px;
    width: 120%;
    transform: rotate(40deg);
    top: 20%;
    left: -10%;
}

.pin {
    position: absolute;
    font-size: 20px;
    z-index: 2;
}

.pin1 {
    top: 25%;
    right: 25%;
}

.pin2 {
    top: 60%;
    right: 18%;
}

.pin3 {
    bottom: 18%;
    left: 25%;
}

.centro {
    left: 44%;
    top: 45%;
    font-size: 14px;
}

.mapa-label {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    color: #65716c;
}

.btn-mapa {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;
    border: 0;
    background: #202522;
    color: #fff;
    border-radius: 20px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 11px;
}

.beneficios {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.ben-item {
    display: flex;
    gap: 9px;
}

.ben-ico {
    width: 31px;
    height: 31px;
    flex: none;
    border-radius: 50%;
    background: #eaf7ec;
    display: grid;
    place-items: center;
}

.ben-item strong {
    font-size: 12px;
}

.ben-item p {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.3;
}

.cta-negocio {
    background: linear-gradient(100deg, #122016, #24352a);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cta-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    display: grid;
    place-items: center;
    font-size: 21px;
}

.cta-negocio h2 {
    font-size: 15px;
}

.cta-negocio p {
    font-size: 11px;
    color: #cbd4cd;
    margin-top: 3px;
    max-width: 550px;
}

.btn-cta {
    border: 0;
    background: var(--green);
    color: #fff;
    border-radius: 22px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.page-top {
    margin-bottom: 20px;
}

.page-top h1 {
    font-size: 28px;
    margin-top: 5px;
}

.page-top p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 5px;
}

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

.card-cat {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 15px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 4px 18px #00000008;
}

.card-cat:hover {
    border-color: var(--green);
    transform: translateY(-1px);
}

.cat-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eff7f0;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.cat-info {
    flex: 1;
}

.cat-info strong {
    display: block;
    font-size: 14px;
}

.cat-info span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 4px;
}

.steps,
.contato-grid,
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.steps article {
    background: #fff;
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 16px;
}

.steps b {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #eaf7ec;
    color: var(--green-dark);
    border-radius: 50%;
    margin-bottom: 14px;
}

.steps h2 {
    font-size: 16px;
}

.steps p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.5;
}

.estado-vazio {
    text-align: center;
    background: #fff;
    border: 1px dashed #ccd5ce;
    border-radius: 16px;
    padding: 50px 20px;
}

.estado-vazio h2,
.estado-vazio h3 {
    font-size: 18px;
}

.estado-vazio p {
    color: var(--muted);
    font-size: 12px;
    margin: 7px 0 16px;
}

.empty-icon {
    font-size: 35px;
    margin-bottom: 8px;
}

.busca-interna {
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 16px;
}

.busca-interna input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 8px;
    font-size: 14px;
}

.resultados {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.resultado-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 15px;
}

.resultado-icone {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #eff7f0;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex: none;
}

.resultado-info {
    min-width: 0;
}

.resultado-info h3 {
    font-size: 15px;
}

.resultado-info span {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
}

.resultado-info p {
    font-size: 11px;
    color: var(--muted);
    margin: 6px 0;
    line-height: 1.35;
}

.resultado-info small {
    font-size: 10px;
    color: #65716c;
}

.resultado-acoes {
    display: flex;
    gap: 7px;
    margin-top: 10px;
}

.mini-action {
    border: 1px solid #dfe6e1;
    background: #fff;
    color: #2d6035;
    border-radius: 18px;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.resultado-acoes .mini-action:last-child {
    background: #eaf7ec;
}

.empresa-perfil {
    max-width: 900px;
    margin: auto;
}

.empresa-capa {
    background: linear-gradient(120deg, #122016, #294832);
    color: #fff;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.empresa-avatar {
    width: 72px;
    height: 72px;
    background: var(--green);
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 900;
}

.empresa-capa h1 {
    font-size: 28px;
    margin: 5px 0;
}

.empresa-capa p {
    font-size: 12px;
    color: #d3ddd5;
}

.empresa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 14px 0;
}

.perfil-bloco {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.perfil-bloco h2 {
    font-size: 15px;
    margin-bottom: 10px;
}

.perfil-bloco p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 9px;
}

.perfil-bloco .btn-principal {
    display: inline-block;
    text-decoration: none;
    margin-top: 8px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--muted);
}

.cadastro-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.cadastro-intro {
    padding: 30px 10px;
}

.cadastro-intro h1 {
    font-size: 36px;
    line-height: 1.05;
    margin: 8px 0 14px;
}

.cadastro-intro h1 span {
    color: var(--green);
}

.cadastro-intro p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 500px;
}

.cadastro-intro ul {
    list-style: none;
    margin-top: 22px;
    display: grid;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.form-card {
    padding: 22px;
}

.form-heading h2 {
    font-size: 20px;
}

.form-heading p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.form-card form {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.form-card label {
    display: grid;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #39413c;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    border: 1px solid #dce4de;
    border-radius: 10px;
    padding: 11px 12px;
    outline: 0;
    font: inherit;
    font-size: 13px;
    background: #fff;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--green);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.connected-account {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f3f8f4;
    padding: 9px;
    border-radius: 10px;
    font-size: 11px;
}

.connected-account span {
    margin-left: auto;
    color: var(--green-dark);
    font-weight: 700;
}

.connected-account input {
    width: auto;
}

.form-message {
    min-height: 16px;
    font-size: 11px;
    font-weight: 700;
}

.form-message.error {
    color: #b3261e;
}

.form-message.success {
    color: var(--green-dark);
}

.btn-full {
    width: 100%;
}

.hero-empresas {
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: 30px;
    line-height: 1.1;
    margin: 7px 0 12px;
}

.hero-text > p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.hero-bullets {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.hero-bullets span {
    font-size: 10px;
    background: #eaf7ec;
    color: #2a7a32;
    padding: 6px 9px;
    border-radius: 20px;
    font-weight: 800;
}

.hero-card {
    background: #f5f8f6;
    border-radius: 14px;
    padding: 18px;
}

.mini-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.mini-icon {
    width: 48px;
    height: 48px;
    background: #eaf7ec;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.mini-card strong {
    display: block;
    font-size: 13px;
}

.mini-card span {
    font-size: 10px;
    color: var(--muted);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 15px;
    text-align: center;
}

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

.stats span {
    font-size: 10px;
    color: var(--muted);
}

.plano {
    padding: 20px;
    position: relative;
}

.plano h2 {
    font-size: 16px;
}

.preco {
    font-size: 25px;
    font-weight: 900;
    margin: 10px 0;
}

.preco span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

.plano ul {
    list-style: none;
    display: grid;
    gap: 8px;
    min-height: 92px;
}

.plano li {
    font-size: 11px;
    color: #4b544e;
}

.plano .btn-secundario {
    width: 100%;
    color: #263129;
    background: #fff;
    border-color: #ccd6cf;
}

.destaque-plano {
    border-color: var(--green);
}

.tag {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #eaf7ec;
    color: var(--green-dark);
    font-size: 9px;
    padding: 4px 7px;
    border-radius: 12px;
    font-weight: 900;
}

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

.contato-card {
    padding: 28px;
}

.contato-card h2 {
    font-size: 17px;
}

.contato-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 6px 0 15px;
}

.contato-card .btn-principal {
    display: inline-block;
    text-decoration: none;
}

.rodape {
    text-align: center;
    padding: 22px;
    color: #7a827d;
    font-size: 10px;
    background: #fff;
    border-top: 1px solid var(--border);
}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 900px) {

    .topo {
        padding: 10px 15px;
        align-items: flex-start;
    }

    .seletor-cidade{display:flex;align-items:center;gap:5px;margin-right:8px;padding:5px 9px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(0,0,0,.18);backdrop-filter:blur(6px);color:#fff;font-size:12px;font-weight:700;white-space:nowrap}.seletor-cidade select{border:0;background:transparent;color:#fff;font:inherit;outline:none;cursor:pointer;max-width:150px}.seletor-cidade select option{color:#111;background:#fff}.logo-achou{display:block}.logo #logoCidade{display:block;font-size:12px;letter-spacing:3px;font-weight:500;margin-top:4px}@media(max-width:900px){.topo{padding:10px 18px}.topo nav{gap:10px}.topo nav a:nth-child(n+4){display:none}.seletor-cidade{margin-right:4px}.seletor-cidade select{max-width:105px;font-size:11px}.logo{left:0;font-size:20px}}@media(max-width:600px){.topo{align-items:flex-start}.topo nav{display:none}.seletor-cidade{position:absolute;right:12px;top:72px;background:rgba(0,0,0,.48)}}

.topo nav {
        order: 3;
        position: absolute;
        top: 58px;
        left: 10px;
        right: 10px;
        overflow: auto;
        background: #0008;
        border-radius: 12px;
        padding: 5px 8px;
        gap: 15px;
    }

    .topo nav a {
        white-space: nowrap;
    }

    .acoes {
        margin-left: auto;
    }

    .banner {
        padding: 110px 15px 22px;
    }

    .banner-conteudo {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .texto h1 {
        font-size: 23px;
    }

    .caixa-busca {
        width: 100%;
    }

    #conteudo-principal {
        padding: 24px 15px;
    }

    .grid-principal,
    .cadastro-layout,
    .hero-empresas {
        grid-template-columns: 1fr;
    }

    .beneficios,
    .grid-categorias,
    .steps,
    .planos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .resultados,
    .empresa-grid {
        grid-template-columns: 1fr;
    }

    .cadastro-intro {
        padding: 10px 0;
    }

    .cadastro-intro h1 {
        font-size: 29px;
    }
}

@media (max-width: 560px) {

    .logo {
        font-size: 19px;
    }

    .logo span {
        font-size: 9px;
    }

    .top-btn-primary,
    .top-btn-small {
        padding: 6px 8px;
    }

    .banner {
        min-height: 235px;
    }

    .beneficios,
    .grid-categorias,
    .steps,
    .planos-grid,
    .contato-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .inicio-chamada {
        padding: 18px;
    }

    .inicio-ilustracao {
        display: none;
    }

    .cta-negocio {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-left {
        align-items: flex-start;
    }

    .btn-cta {
        width: 100%;
    }

    .seletor-cidade{display:flex;align-items:center;gap:5px;margin-right:8px;padding:5px 9px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(0,0,0,.18);backdrop-filter:blur(6px);color:#fff;font-size:12px;font-weight:700;white-space:nowrap}.seletor-cidade select{border:0;background:transparent;color:#fff;font:inherit;outline:none;cursor:pointer;max-width:150px}.seletor-cidade select option{color:#111;background:#fff}.logo-achou{display:block}.logo #logoCidade{display:block;font-size:12px;letter-spacing:3px;font-weight:500;margin-top:4px}@media(max-width:900px){.topo{padding:10px 18px}.topo nav{gap:10px}.topo nav a:nth-child(n+4){display:none}.seletor-cidade{margin-right:4px}.seletor-cidade select{max-width:105px;font-size:11px}.logo{left:0;font-size:20px}}@media(max-width:600px){.topo{align-items:flex-start}.topo nav{display:none}.seletor-cidade{position:absolute;right:12px;top:72px;background:rgba(0,0,0,.48)}}

.topo nav {
        font-size: 11px;
    }

    .empresa-capa {
        padding: 20px;
    }

    .empresa-capa h1 {
        font-size: 23px;
    }

    .busca-interna {
        flex-direction: column;
    }
}


/* =========================================================
   MAPA REAL
   ========================================================= */

.mapa-bloco {
    padding: 18px;
}

.mapa-subtitulo {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.mapa-localizar {
    border: 1px solid var(--border);
    background: #fff;
    color: #202522;
    border-radius: 20px;
    padding: 8px 11px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.mapa-localizar:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.mapa-real {
    height: 360px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d5dfe3;
    background: #e7ecee;
}

.mapa-legenda {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 9px;
    font-size: 10px;
    color: #68716b;
}

.mapa-legenda span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legenda-empresa,
.legenda-usuario {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px #0005;
}

.legenda-empresa {
    background: #3bb54a;
}

.legenda-usuario {
    background: #2563eb;
}

.mapa-legenda .btn-mapa {
    position: static;
    margin-left: auto;
    background: #202522;
    padding: 7px 11px;
}

.mapa-status {
    font-size: 10px;
    color: #68716b;
    margin-top: 6px;
    min-height: 12px;
}

.mapa-popup {
    min-width: 190px;
}

.mapa-popup strong {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.mapa-popup .popup-cat {
    font-size: 10px;
    color: #68716b;
    margin-bottom: 7px;
}

.mapa-popup .popup-end {
    font-size: 10px;
    color: #404842;
    line-height: 1.4;
    margin-bottom: 8px;
}

.mapa-popup a {
    display: inline-flex;
    text-decoration: none;
    background: #3bb54a;
    color: #fff;
    border-radius: 15px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
}

.mapa-popup a:hover {
    background: #238a31;
}

.mapa-marker {
    background: #3bb54a;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 3px 9px #0005;
    width: 30px;
    height: 30px;
    transform: rotate(-45deg);
    display: grid;
    place-items: center;
}

.mapa-marker span {
    transform: rotate(45deg);
    font-size: 14px;
}

.mapa-user-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;
    border: 3px solid #fff;
    box-shadow: 0 0 0 5px #2563eb44, 0 2px 8px #0006;
}

@media (max-width: 700px) {

    .mapa-real {
        height: 300px;
    }

    .mapa-localizar {
        padding: 7px 9px;
        font-size: 10px;
    }

    .mapa-bloco .bloco-header {
        align-items: flex-start;
    }
}


/* =========================================================
   CATÁLOGO DE OFERTAS DA HOME
   ========================================================= */

.ofertas-catalogo {
    margin-bottom: 18px;
}

.catalogo-subtitulo {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.ofertas-validade {
    font-size: 10px;
    font-weight: 800;
    background: #fff4d8;
    color: #8a5a00;
    border: 1px solid #f0d99c;
    border-radius: 999px;
    padding: 7px 10px;
    white-space: nowrap;
}

.catalogo-status {
    font-size: 12px;
    color: var(--muted);
    padding: 18px 4px;
    text-align: center;
}

.catalogo-ofertas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.catalogo-oferta {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px #00000008;
    min-width: 0;
}

.catalogo-oferta-media {
    aspect-ratio: 1 / 1;
    background: #f5f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalogo-oferta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogo-oferta-info {
    padding: 11px;
}

.catalogo-oferta-loja {
    font-size: 10px;
    color: var(--green-dark);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalogo-oferta h3 {
    font-size: 14px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalogo-oferta-desc {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalogo-precos {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.catalogo-preco {
    font-size: 15px;
    font-weight: 900;
}

.catalogo-preco-antigo {
    font-size: 10px;
    color: #888;
    text-decoration: line-through;
}

.catalogo-expira {
    font-size: 10px;
    color: #8a5a00;
    margin-top: 7px;
}

.catalogo-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    margin-top: 9px;
}

@media (max-width: 900px) {

    .catalogo-ofertas-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {

    .catalogo-ofertas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .ofertas-validade {
        display: none;
    }
}

@media (max-width: 390px) {

    .catalogo-ofertas-grid {
        grid-template-columns: 1fr;
    }
}
/* MODAL GLOBAL DE IMAGEM — OFERTAS E PRODUTOS */
#achouImagemFullscreen{position:fixed;inset:0;z-index:99999;display:none;align-items:center;justify-content:center;padding:24px;background:rgba(0,0,0,.88)}
#achouImagemFullscreen.open{display:flex}
.achou-imagem-fullscreen{display:block;max-width:95vw;max-height:92vh;width:auto;height:auto;object-fit:contain;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.45)}
.achou-imagem-fechar{position:absolute;top:16px;right:18px;z-index:2;width:44px;height:44px;border:0;border-radius:50%;background:rgba(255,255,255,.16);color:#fff;font-size:32px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center}
.achou-imagem-fechar:hover{background:rgba(255,255,255,.28)}
@media(max-width:600px){#achouImagemFullscreen{padding:12px}.achou-imagem-fullscreen{max-width:98vw;max-height:88vh;border-radius:8px}.achou-imagem-fechar{top:10px;right:10px}}
