:root {
    --green: #00c853;
    --green-dark: #00ad48;

    --dark: #0f1720;
    --dark-soft: #17232e;

    --white: #ffffff;

    --background: #f4f6f8;

    --text: #111820;
    --muted: #7b858e;

    --border: #e0e5e9;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--background);

    -webkit-font-smoothing: antialiased;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 530px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(0, 200, 83, .14),
            transparent 310px
        ),
        var(--dark);
}


/* NAV */

.nav {
    position: relative;
    z-index: 10;

    min-height: 125px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid rgba(255, 255, 255, .06);
}


.logo-link {
    display: block;
}


.logo {
    display: block;

    width: 220px;
    height: auto;
}


.bairro-selector {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px 16px;

    color: #d9dfe4;
    background: rgba(255, 255, 255, .045);

    border:
        1px solid rgba(255, 255, 255, .09);

    border-radius: 30px;

    font-size: 9px;
    font-weight: 600;

    transition: .2s;
}


.bairro-selector:hover {
    background: rgba(255, 255, 255, .08);
}


.status-dot {
    width: 7px;
    height: 7px;

    background: var(--green);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(0, 200, 83, .10);
}


.chevron {
    margin-left: 5px;

    color: #84909a;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    min-height: 405px;

    display: flex;
    align-items: center;
}


.hero-copy {
    position: relative;
    z-index: 3;

    width: 65%;

    padding-bottom: 45px;
}


.eyebrow {
    color: var(--green);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2.2px;
}


.hero h1 {
    margin-top: 10px;

    font-size: clamp(43px, 5vw, 63px);
    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -3.3px;
}


.hero h1 strong {
    color: var(--green);
    font-weight: 800;
}


.hero-copy > p {
    max-width: 510px;

    margin-top: 17px;

    color: #a8b2bb;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================
   BUSCA
========================= */

.search {
    width: min(720px, 100%);
    height: 66px;

    display: flex;
    align-items: center;

    margin-top: 30px;
    padding: 7px 7px 7px 22px;

    background: var(--white);

    border-radius: 14px;

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, .20);
}


.search-icon {
    position: relative;

    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-right: 15px;

    border: 2px solid var(--green);
    border-radius: 50%;
}


.search-icon::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 2px;

    right: -5px;
    bottom: -2px;

    background: var(--green);

    border-radius: 2px;

    transform: rotate(45deg);
}


.search input {
    flex: 1;

    min-width: 0;

    color: var(--text);
    background: transparent;

    border: 0;
    outline: 0;

    font-size: 11px;
}


.search input::placeholder {
    color: #9aa3ab;
}


.search button {
    height: 100%;

    padding: 0 28px;

    color: var(--white);
    background: var(--green);

    border: 0;
    border-radius: 10px;

    font-size: 9px;
    font-weight: 700;

    transition: .2s;
}


.search button:hover {
    background: var(--green-dark);
}


/* =========================
   PIN
========================= */

.hero-symbol {
    position: absolute;

    width: 360px;
    height: 430px;

    right: -70px;
    bottom: -110px;

    opacity: .12;

    transform: rotate(8deg);
}


.pin {
    position: relative;

    width: 250px;
    height: 250px;

    background: var(--green);

    border-radius:
        50% 50% 50% 0;

    transform: rotate(-45deg);
}


.pin span {
    position: absolute;

    width: 105px;
    height: 105px;

    top: 72px;
    left: 72px;

    background: var(--dark);

    border-radius: 50%;
}


/* =========================
   TÍTULOS
========================= */

.section-title h2 {
    margin-top: 5px;

    font-size: 22px;

    letter-spacing: -.9px;
}


/* =========================
   CATEGORIAS
========================= */

.categories-section {
    padding: 39px 0 10px;
}


.categories {
    display: grid;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 10px;

    margin-top: 19px;
}


.category {
    min-height: 88px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #58636d;
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 13px;

    transition:
        transform .2s,
        box-shadow .2s,
        border-color .2s;
}


.category:hover {
    transform: translateY(-3px);

    color: var(--white);
    background: var(--green);

    border-color: var(--green);

    box-shadow:
        0 10px 25px
        rgba(0, 200, 83, .20);
}


.category.active {
    color: var(--white);
    background: var(--green);

    border-color: var(--green);

    box-shadow:
        0 10px 25px
        rgba(0, 200, 83, .20);
}


.category-icon {
    font-size: 18px;
    line-height: 1;
}


.category strong {
    font-size: 8px;
    font-weight: 600;
}


/* =========================
   COMÉRCIOS
========================= */

.business-section {
    padding: 50px 0 0;
}


.business-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.counter {
    color: var(--muted);

    font-size: 8px;
}


/* =========================
   GRID DE COMÉRCIOS
========================= */

.business-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin-top: 22px;
}


/* =========================================================
   CARD DO ESTABELECIMENTO
========================================================= */

.business-card {
    min-width: 0;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e3e8ec;
    border-radius: 18px;

    box-shadow:
        0 8px 28px rgba(15, 23, 32, 0.045);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.business-card:hover {
    transform: translateY(-5px);

    border-color: #d5dce1;

    box-shadow:
        0 18px 45px rgba(15, 23, 32, 0.10);
}


/* =========================================================
   CAPA
========================================================= */

.business-card-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(0, 200, 83, 0.14),
            transparent 150px
        ),
        linear-gradient(
            135deg,
            #17232e,
            #0f1720
        );
}

.business-card-image::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -65px;
    bottom: -90px;

    background: rgba(0, 200, 83, 0.10);

    border-radius: 50%;

    pointer-events: none;
}

.business-card-image img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.business-card:hover .business-card-image img {
    transform: scale(1.045);
}

/* =========================================================
   LOGO DO ESTABELECIMENTO SOBRE A CAPA
========================================================= */

.business-card-logo {
    position: absolute;
    z-index: 5;

    left: 18px;
    bottom: 14px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px;

    background: #ffffff;

    border: 1px solid #e2e8ec;
    border-radius: 15px;

    box-shadow:
        0 8px 22px rgba(15, 23, 32, 0.20);
}

.business-card-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 10px;

    transform: none !important;
}

.business-card:hover .business-card-logo img {
    transform: none !important;
}

/* =========================================================
   ESTABELECIMENTO SEM FOTO
========================================================= */

.business-card-fallback {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.business-card-initial {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 74px;
    height: 74px;

    color: #00d65a;

    background: rgba(0, 200, 83, 0.08);

    border: 1px solid rgba(0, 200, 83, 0.18);
    border-radius: 50%;

    font-size: 29px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.business-card-fallback small {
    max-width: 220px;

    padding: 0 20px;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.52);

    font-size: 11px;
    font-weight: 600;

    text-align: center;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.business-card-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    min-height: 230px;

    padding: 20px 21px 19px;
}


/* CATEGORIA */

.business-card-category {
    width: fit-content;

    padding: 5px 9px;

    color: #008e3c;

    background: rgba(0, 200, 83, 0.075);

    border: 1px solid rgba(0, 200, 83, 0.08);
    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.65px;

    text-transform: uppercase;
}


/* NOME */

.business-card-content h3 {
    margin-top: 11px;

    color: #111820;

    font-size: 20px;
    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.55px;
}


/* =========================================================
   LOCALIZAÇÃO
========================================================= */

.business-card-location {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-top: 7px;

    color: #7b858e;

    font-size: 13px;
    font-weight: 500;
}

.business-card-location .business-location-icon {
    flex: 0 0 auto;

    color: #00b94c;

    font-size: 15px;
    line-height: 1;
}

.business-card-location .business-location-text {
    color: #7b858e;

    font-size: 13px;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.business-card-description {
    display: -webkit-box;

    overflow: hidden;

    margin-top: 13px;

    color: #77828b;

    font-size: 13px;

    line-height: 1.6;

    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   RODAPÉ
========================================================= */

.business-card-footer {
    margin-top: auto;
    padding-top: 19px;
}


/* =========================================================
   BOTÃO
========================================================= */

.business-card-button {
    width: 100%;
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    color: #ffffff;

    background: #0f1720;

    border: 0;
    border-radius: 10px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.business-card-button span {
    color: inherit;
}

.business-card-button strong {
    color: #00e868;

    font-size: 18px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.2s ease;
}

.business-card-button:hover {
    background: #00b94c;

    box-shadow:
        0 9px 22px rgba(0, 200, 83, 0.17);
}

.business-card-button:hover strong {
    color: #ffffff;

    transform: translateX(3px);
}

.business-card-button:active {
    transform: scale(0.985);
}


/* =========================
   EMPTY STATE
========================= */

.empty-state {
    min-height: 310px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 17px;
    padding: 40px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 18px;
}


.empty-pin {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 21px;

    background: rgba(0, 200, 83, .07);

    border-radius: 50%;
}


.mini-pin {
    position: relative;

    width: 27px;
    height: 27px;

    background: var(--green);

    border-radius:
        50% 50% 50% 0;

    transform: rotate(-45deg);
}


.mini-pin span {
    position: absolute;

    width: 11px;
    height: 11px;

    top: 8px;
    left: 8px;

    background: var(--white);

    border-radius: 50%;
}


.empty-state h3 {
    font-size: 16px;
}


.empty-state h3 strong {
    color: var(--green);
}


.empty-state p {
    max-width: 460px;

    margin-top: 8px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.75;
}


/* =========================
   MANIFESTO
========================= */

.manifesto-section {
    padding: 60px 0;
}


.manifesto {
    position: relative;

    min-height: 260px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 45px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0, 200, 83, .18),
            transparent 260px
        ),
        var(--dark);

    border-radius: 21px;
}


.manifesto-copy {
    position: relative;
    z-index: 3;
}


.manifesto h2 {
    margin-top: 8px;

    font-size: 30px;

    line-height: 1.13;

    letter-spacing: -1.4px;
}


.manifesto h2 strong {
    color: var(--green);
}


.manifesto p {
    margin-top: 13px;

    color: #a9b3bc;

    font-size: 9px;
}


.manifesto-pin {
    position: absolute;

    right: -55px;
    bottom: -100px;

    opacity: .09;

    transform: scale(.85);
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 35px 0;

    background: #090f14;
}


.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-logo {
    width: 150px;
}


.footer-content > span {
    color: #6f7a84;

    font-size: 7px;
}


.footer-right {
    display: flex;
    align-items: center;

    gap: 20px;

    color: #6f7a84;

    font-size: 8px;
}


/* =====================================================
   MODAL DO ESTABELECIMENTO
===================================================== */

body.modal-open {
    overflow: hidden;
}


.business-modal-overlay {
    position: fixed;
    z-index: 9999;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    background:
        rgba(9, 15, 20, .78);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition:
        opacity .25s,
        visibility .25s;
}


.business-modal-overlay.open {
    visibility: visible;
    opacity: 1;
}


.business-modal {
    position: relative;

    width: min(570px, 100%);
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    background: var(--white);

    border-radius: 20px;

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, .30);

    transform:
        translateY(15px)
        scale(.98);

    transition: transform .25s;
}


.business-modal-overlay.open
.business-modal {
    transform:
        translateY(0)
        scale(1);
}


/* FECHAR MODAL */

.business-modal-close {
    position: absolute;
    z-index: 10;

    width: 35px;
    height: 35px;

    top: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #56616a;

    background:
        rgba(255, 255, 255, .92);

    border: 1px solid var(--border);
    border-radius: 50%;

    font-size: 19px;

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, .08);

    transition: .2s;
}


.business-modal-close:hover {
    color: var(--white);
    background: var(--green);

    border-color: var(--green);
}


/* =========================
   DETALHES
========================= */

.business-detail {
    padding-bottom: 28px;
}

/* =====================================================
   CAPA + LOGO DO ESTABELECIMENTO
===================================================== */

.business-detail-visual {
    position: relative;
    margin-bottom: 38px;
}


.business-detail-image {
    width: 100%;
    height: 260px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 0px;

    color: var(--green);

    background:
        linear-gradient(
            135deg,
            var(--dark-soft),
            var(--dark)
        );

    border-radius:
        20px 20px 0 0;
}


.business-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.business-detail-image > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 95px;
    height: 95px;

    color: var(--green);

    background:
        rgba(0, 200, 83, .10);

    border:
        1px solid
        rgba(0, 200, 83, .20);

    border-radius: 50%;

    font-size: 40px;
    font-weight: 800;
}

/* =====================================================
   LOGO DO ESTABELECIMENTO NO MODAL
===================================================== */

.business-detail-logo {
    position: absolute;
    z-index: 5;

    left: 28px;
    bottom: -28px;

    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6px;

    background: #ffffff;

    border: 1px solid #e2e8ec;
    border-radius: 17px;

    box-shadow:
        0 10px 28px rgba(15, 23, 32, 0.18);
}

.business-detail-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 11px;
}

.business-detail-category {
    display: inline-block;

    margin:
        0 28px 8px;

    padding: 5px 9px;

    color: #008e3c;

    background:
        rgba(0, 200, 83, .08);

    border-radius: 30px;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.business-detail h2 {
    margin: 0 28px;

    color: var(--text);

    font-size: 25px;
    font-weight: 700;

    letter-spacing: -1px;
}


.business-detail-description {
    margin:
        10px 28px 0;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.7;
}


/* INFORMAÇÕES */

.business-detail-info {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin:
        22px 28px 0;
}


.business-detail-info > div {
    display: flex;
    flex-direction: column;

    gap: 4px;

    padding: 14px;

    background: var(--background);

    border: 1px solid var(--border);
    border-radius: 10px;
}


.business-detail-info strong {
    color: var(--green);

    font-size: 7px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.business-detail-info span {
    color: #58636d;

    font-size: 8px;

    line-height: 1.5;
}


/* AÇÕES DO MODAL */

.business-detail-actions {
    display: flex;

    gap: 9px;

    margin:
        22px 28px 0;
}


.business-detail-actions a {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 11px 15px;

    border-radius: 10px;

    font-size: 8px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s,
        opacity .2s;
}


.business-detail-actions a:hover {
    transform: translateY(-2px);
}


.btn-whatsapp {
    color: var(--white);

    background: var(--green);
}


.btn-whatsapp:hover {
    background: var(--green-dark);
}


.btn-instagram {
    color: var(--dark);

    background: var(--background);

    border: 1px solid var(--border);
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

    .categories {
        grid-template-columns:
            repeat(4, 1fr);
    }


    .hero-copy {
        width: 80%;
    }


    .business-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    .nav {
        min-height: 105px;
    }


    .logo {
        width: 165px;
    }


    .bairro-selector {
        padding: 9px 11px;

        font-size: 7px;
    }


    .hero {
        min-height: 500px;
    }


    .hero-content {
        min-height: 395px;
    }


    .hero-copy {
        width: 100%;

        padding-bottom: 30px;
    }


    .hero h1 {
        font-size: 42px;

        letter-spacing: -2.3px;
    }


    .hero-copy > p {
        max-width: 330px;
    }


    .hero-symbol {
        right: -210px;

        opacity: .07;
    }


    .search {
        height: 60px;

        padding-left: 17px;
    }


    .search button {
        padding: 0 18px;
    }


    .categories {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .category {
        min-height: 80px;
    }


    .business-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }


    .business-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .business-card-content {
        min-height: 210px;

        padding: 19px;
    }


    .empty-state {
        min-height: 275px;

        padding: 30px 20px;
    }


    .manifesto {
        min-height: 245px;

        padding: 32px 25px;
    }


    .manifesto h2 {
        font-size: 25px;
    }


    .manifesto-pin {
        right: -155px;

        opacity: .06;
    }


    .footer-content {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }


    .business-modal-overlay {
        padding: 12px;
    }


    .business-detail-image {
        height: 210px;
    }


    .business-detail-category {
        margin-left: 20px;
        margin-right: 20px;
    }


    .business-detail h2 {
        margin-left: 20px;
        margin-right: 20px;

        font-size: 21px;
    }


    .business-detail-description {
        margin-left: 20px;
        margin-right: 20px;
    }


    .business-detail-info {
        grid-template-columns: 1fr;

        margin-left: 20px;
        margin-right: 20px;
    }


    .business-detail-actions {
        flex-direction: column;

        margin-left: 20px;
        margin-right: 20px;
    }

}
/* =====================================================
   VITRINE DO ESTABELECIMENTO
===================================================== */

.business-showcase {
    margin: 26px 28px 0;
    padding-top: 24px;

    border-top: 1px solid var(--border);
}


/* =====================================================
   CABEÇALHO DA VITRINE
===================================================== */

.business-showcase-heading {
    margin-bottom: 20px;
}

.business-showcase-heading > span {
    display: inline-block;

    margin-bottom: 5px;

    color: var(--green);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.business-showcase-heading h3 {
    color: var(--text);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -.5px;
}


/* =====================================================
   GRUPOS
===================================================== */

.business-showcase-group + .business-showcase-group {
    margin-top: 22px;
}

.business-showcase-group-title {
    margin-bottom: 9px;

    color: #6d7780;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* =====================================================
   LISTA DE ITENS
===================================================== */

.business-showcase-items {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 12px;
}


/* =====================================================
   ITEM
===================================================== */

.business-showcase-item {
    padding: 15px 16px;
}

.business-showcase-item + .business-showcase-item {
    border-top: 1px solid var(--border);
}


/* =====================================================
   NOME + PREÇO
===================================================== */

.business-showcase-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.business-showcase-item h4 {
    min-width: 0;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;
}

.business-showcase-price {
    flex-shrink: 0;

    color: #009b41;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.4;

    white-space: nowrap;
}


/* =====================================================
   DESCRIÇÃO DO ITEM
===================================================== */

.business-showcase-item p {
    max-width: 380px;

    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.6;
}


/* =====================================================
   EFEITO LEVE
===================================================== */

.business-showcase-item {
    transition: background .2s;
}

.business-showcase-item:hover {
    background: #fafbfc;
}


/* =====================================================
   RESPONSIVO - VITRINE
===================================================== */

@media (max-width: 600px) {

    .business-showcase {
        margin-left: 20px;
        margin-right: 20px;
    }

    .business-showcase-heading h3 {
        font-size: 16px;
    }

    .business-showcase-item {
        padding: 14px;
    }

    .business-showcase-item-top {
        gap: 12px;
    }

}
/* =========================================================
   BAIRRON — BANNER CADASTRE SEU NEGÓCIO
========================================================= */

.merchant-section {
    padding: 20px 0 30px;
}

.merchant-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    padding: 48px 54px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 50%,
            rgba(0, 200, 83, 0.18) 0%,
            rgba(0, 200, 83, 0.06) 25%,
            transparent 48%
        ),
        linear-gradient(
            110deg,
            #0f1720 0%,
            #0d1820 55%,
            #08271f 100%
        );

    border-radius: 20px;
}


/* ---------------------------------------------------------
   CONTEÚDO PRINCIPAL
--------------------------------------------------------- */

.merchant-banner-content {
    position: relative;
    z-index: 3;
    width: 44%;
    max-width: 500px;
}

.merchant-eyebrow {
    display: block;
    margin-bottom: 13px;

    color: #00c853;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.merchant-banner-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.merchant-banner-content h2 strong {
    color: #00c853;
    font-weight: 800;
}

.merchant-banner-content p {
    max-width: 440px;
    margin: 17px 0 25px;

    color: #aeb8c2;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   BOTÃO
--------------------------------------------------------- */

.merchant-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    min-width: 230px;
    min-height: 50px;
    padding: 0 24px;

    background: #00c853;
    color: #ffffff;

    border: 0;
    border-radius: 10px;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(0, 200, 83, 0.16);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.merchant-button span {
    font-size: 19px;
    font-weight: 400;
    line-height: 1;

    transition: transform 0.2s ease;
}

.merchant-button:hover {
    background: #00b94c;

    transform: translateY(-2px);

    box-shadow:
        0 16px 35px rgba(0, 200, 83, 0.22);
}

.merchant-button:hover span {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   BENEFÍCIOS
--------------------------------------------------------- */

.merchant-benefits {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    gap: 22px;

    width: 31%;
    margin-left: auto;
    margin-right: 110px;
}

.merchant-benefit {
    display: flex;
    align-items: center;
    gap: 13px;
}

.merchant-benefit-icon {
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: rgba(0, 200, 83, 0.09);
    color: #00e868;

    border: 1px solid rgba(0, 200, 83, 0.08);
    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;
}

.merchant-benefit > div:last-child {
    display: flex;
    flex-direction: column;
}

.merchant-benefit strong {
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.merchant-benefit span {
    margin-top: 2px;

    color: #89959f;

    font-size: 9px;
    font-weight: 400;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   ELEMENTO GRÁFICO DA DIREITA
--------------------------------------------------------- */

.merchant-decoration {
    position: absolute;
    z-index: 1;

    top: 50%;
    right: -35px;

    width: 240px;
    height: 240px;

    transform: translateY(-50%);

    opacity: 0.9;
}

.merchant-ring {
    position: absolute;

    inset: 0;

    border:
        1px solid rgba(0, 200, 83, 0.16);

    border-radius: 50%;
}

.merchant-ring::before {
    content: "";

    position: absolute;

    top: 35px;
    left: 35px;
    right: 35px;
    bottom: 35px;

    border:
        1px solid rgba(0, 200, 83, 0.12);

    border-radius: 50%;
}

.merchant-ring::after {
    content: "";

    position: absolute;

    top: 72px;
    left: 72px;
    right: 72px;
    bottom: 72px;

    background: rgba(0, 200, 83, 0.05);

    border:
        1px solid rgba(0, 200, 83, 0.1);

    border-radius: 50%;
}


/* ---------------------------------------------------------
   PIN
--------------------------------------------------------- */

.merchant-pin {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 48px;
    height: 48px;

    background: #00c853;

    border-radius: 50% 50% 50% 8px;

    transform:
        translate(-50%, -58%)
        rotate(-45deg);

    box-shadow:
        0 0 35px rgba(0, 200, 83, 0.3);
}

.merchant-pin span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 15px;
    height: 15px;

    background: #0f2c22;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


/* ---------------------------------------------------------
   DETALHE DE FUNDO
--------------------------------------------------------- */

.merchant-banner::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -190px;
    bottom: -290px;

    background: rgba(0, 200, 83, 0.045);

    border-radius: 50%;
}

.merchant-banner::after {
    content: "";

    position: absolute;

    width: 1px;
    height: 130%;

    top: -15%;
    right: 32%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.035),
            transparent
        );

    transform: rotate(12deg);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 950px) {

    .merchant-banner {
        padding: 42px;
    }

    .merchant-banner-content {
        width: 52%;
    }

    .merchant-benefits {
        width: 38%;
        margin-right: 50px;
    }

    .merchant-decoration {
        right: -100px;
    }

}


@media (max-width: 760px) {

    .merchant-section {
        padding-top: 10px;
    }

    .merchant-banner {
        display: block;

        min-height: auto;

        padding: 36px 28px;

        border-radius: 16px;
    }

    .merchant-banner-content {
        width: 100%;
        max-width: 520px;
    }

    .merchant-banner-content h2 {
        font-size: 31px;
    }

    .merchant-banner-content p {
        max-width: 470px;
    }

    .merchant-benefits {
        width: 100%;

        margin: 35px 0 0;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .merchant-decoration {
        right: -100px;
        bottom: -100px;
        top: auto;

        transform: none;

        opacity: 0.45;
    }

}


@media (max-width: 520px) {

    .merchant-banner {
        padding: 32px 22px;
    }

    .merchant-banner-content h2 {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .merchant-banner-content p {
        font-size: 11px;
    }

    .merchant-button {
        width: 100%;
    }

    .merchant-benefits {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .merchant-decoration {
        right: -130px;
        bottom: -120px;
    }

}
/* =========================================================
   BAIRRON — FORMULÁRIO DE CADASTRO DO ESTABELECIMENTO
========================================================= */

.merchant-form-wrapper {
    margin-top: 24px;
    padding: 42px 46px;

    background: #ffffff;

    border: 1px solid #e3e8ec;
    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(15, 23, 32, 0.06);
}


/* Garante que o atributo hidden realmente esconda o formulário */
.merchant-form-wrapper[hidden] {
    display: none !important;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.merchant-form-header {
    padding-bottom: 28px;
    margin-bottom: 30px;

    border-bottom: 1px solid #edf0f2;
}

.merchant-form-header .eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #00b94c;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.merchant-form-header h2 {
    margin: 0;

    color: #0f1720;

    font-size: 27px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.merchant-form-header p {
    max-width: 650px;

    margin: 9px 0 0;

    color: #77828c;

    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   GRID DO FORMULÁRIO
========================================================= */

.merchant-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 22px;
    row-gap: 19px;
}

.merchant-form .full {
    grid-column: 1 / -1;
}


/* =========================================================
   TÍTULO DAS SEÇÕES
========================================================= */

.merchant-form-section {
    position: relative;

    margin-top: 13px;
    padding: 18px 0 5px 46px;

    border-top: 1px solid #edf0f2;
}

.merchant-form-section:first-child {
    margin-top: 0;
    padding-top: 4px;

    border-top: 0;
}

.merchant-form-section::before {
    content: "";

    position: absolute;

    left: 0;
    top: 17px;

    width: 30px;
    height: 30px;

    background:
        linear-gradient(
            135deg,
            #00d65a,
            #00b94c
        );

    border-radius: 9px;

    box-shadow:
        0 8px 18px rgba(0, 200, 83, 0.16);
}

.merchant-form-section:first-child::before {
    top: 3px;
}

.merchant-form-section::after {
    content: "✓";

    position: absolute;

    left: 9px;
    top: 23px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
}

.merchant-form-section:first-child::after {
    top: 9px;
}

.merchant-form-section > span {
    display: block;

    margin-bottom: 2px;

    color: #00a844;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.merchant-form-section h3 {
    margin: 0;

    color: #0f1720;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   CAMPOS
========================================================= */

.merchant-field {
    min-width: 0;
}

.merchant-field label {
    display: block;

    margin-bottom: 7px;

    color: #29333c;

    font-size: 9px;
    font-weight: 600;
}

.merchant-field input,
.merchant-field select,
.merchant-field textarea {
    width: 100%;

    padding: 0 14px;

    background: #f9fafb;
    color: #17212a;

    border: 1px solid #dfe5e9;
    border-radius: 9px;

    outline: none;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 400;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.merchant-field input,
.merchant-field select {
    height: 46px;
}

.merchant-field textarea {
    min-height: 105px;

    padding-top: 13px;
    padding-bottom: 13px;

    line-height: 1.6;

    resize: vertical;
}

.merchant-field input::placeholder,
.merchant-field textarea::placeholder {
    color: #a5afb7;
}

.merchant-field input:focus,
.merchant-field select:focus,
.merchant-field textarea:focus {
    background: #ffffff;

    border-color: #00c853;

    box-shadow:
        0 0 0 3px rgba(0, 200, 83, 0.08);
}


/* =========================================================
   SELECT
========================================================= */

.merchant-field select {
    cursor: pointer;
}


/* =========================================================
   TEXTO AUXILIAR
========================================================= */

.merchant-field small {
    display: block;

    margin-top: 7px;

    color: #929ca5;

    font-size: 7px;
    line-height: 1.6;
}


/* =========================================================
   UPLOAD
========================================================= */

.merchant-upload {
    display: flex !important;
    align-items: center;

    min-height: 82px;

    padding: 16px 18px;

    background: #fafbfc;

    border: 1px dashed #cbd4da;
    border-radius: 11px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.merchant-upload:hover {
    background: rgba(0, 200, 83, 0.025);

    border-color: #00c853;
}

.merchant-upload input {
    display: none;
}

.merchant-upload-icon {
    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-right: 14px;

    background: rgba(0, 200, 83, 0.08);
    color: #00b94c;

    border-radius: 10px;

    font-size: 20px;
    font-weight: 400;
}

.merchant-upload > div:last-child {
    display: flex;
    flex-direction: column;
}

.merchant-upload strong {
    color: #1c2730;

    font-size: 9px;
    font-weight: 700;
}

.merchant-upload span {
    margin-top: 3px;

    color: #8d98a1;

    font-size: 7px;
    font-weight: 400;
}


/* =========================================================
   ARQUIVO SELECIONADO
========================================================= */

.merchant-file-selected {
    margin-top: 8px;
    padding: 9px 12px;

    background: rgba(0, 200, 83, 0.06);
    color: #008e3b;

    border-radius: 7px;

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   CONFIRMAÇÃO
========================================================= */

.merchant-confirmation {
    margin-top: 6px;
    padding: 17px 18px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 200, 83, 0.06),
            rgba(0, 200, 83, 0.025)
        );

    border: 1px solid rgba(0, 200, 83, 0.11);
    border-radius: 10px;
}

.merchant-confirmation label {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    cursor: pointer;
}

.merchant-confirmation input {
    flex: 0 0 auto;

    width: 15px;
    height: 15px;

    margin-top: 1px;

    accent-color: #00c853;
}

.merchant-confirmation span {
    color: #5d6871;

    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   ÁREA DE ENVIO
========================================================= */

.merchant-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 5px;
    padding-top: 25px;

    border-top: 1px solid #edf0f2;
}

.merchant-submit-info {
    display: flex;
    flex-direction: column;
}

.merchant-submit-info strong {
    color: #253039;

    font-size: 9px;
    font-weight: 700;
}

.merchant-submit-info span {
    margin-top: 3px;

    color: #909aa2;

    font-size: 7px;
    line-height: 1.5;
}


/* =========================================================
   BOTÃO ENVIAR
========================================================= */

.merchant-submit {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    min-width: 225px;
    height: 50px;

    padding: 0 22px;

    background:
        linear-gradient(
            135deg,
            #00d65a,
            #00bd4e
        );

    color: #ffffff;

    border: 0;
    border-radius: 10px;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(0, 200, 83, 0.16);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.merchant-submit span {
    font-size: 17px;

    transition: transform 0.2s ease;
}

.merchant-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(0, 200, 83, 0.22);
}

.merchant-submit:hover span {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 760px) {

    .merchant-form-wrapper {
        margin-top: 16px;
        padding: 32px 25px;

        border-radius: 16px;
    }

    .merchant-form {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .merchant-form .full {
        grid-column: auto;
    }

    .merchant-form-header h2 {
        font-size: 22px;
    }

    .merchant-form-section {
        grid-column: auto;

        margin-top: 10px;
    }

    .merchant-submit-area {
        flex-direction: column;
        align-items: stretch;
    }

    .merchant-submit {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .merchant-form-wrapper {
        padding: 27px 20px;
    }

    .merchant-form-header {
        padding-bottom: 22px;
        margin-bottom: 24px;
    }

    .merchant-form-header h2 {
        font-size: 20px;
    }

}

/* ==================================================
   FILTRO DE BAIRROS - DROPDOWN
================================================== */

.bairro-dropdown {
    position: relative;
    display: inline-block;
}


/* MENU */

.bairro-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    min-width: 220px;
    padding: 8px;

    background: #ffffff;

    border: 1px solid rgba(15, 23, 32, 0.10);
    border-radius: 14px;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.18);

    z-index: 1000;
}


/* GARANTE QUE HIDDEN FUNCIONE */

.bairro-menu[hidden] {
    display: none;
}


/* OPÇÕES */

.bairro-menu-item {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 11px 13px;

    border: 0;
    border-radius: 9px;

    background: transparent;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;

    color: #0f1720;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


/* HOVER */

.bairro-menu-item:hover {
    background: #f4f6f8;
}


/* BAIRRO SELECIONADO */

.bairro-menu-item.active {
    background: rgba(0, 200, 83, 0.10);
    color: #00a844;
    font-weight: 600;
}


/* INDICADOR DO BAIRRO ATIVO */

.bairro-menu-item.active::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 9px;

    border-radius: 50%;

    background: #00c853;

    flex-shrink: 0;
}
/* =========================================================
   BAIRRON — ÚTIL NO SEU BAIRRO
========================================================= */

.useful-section {
    padding: 50px 0 35px;
}


/* CABEÇALHO */

.useful-header .section-title > p {
    max-width: 520px;

    margin-top: 8px;

    color: var(--muted);

    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   CATEGORIAS ÚTEIS
========================================================= */

.useful-categories {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 10px;

    margin-top: 19px;
}


/* =========================================================
   CARD
========================================================= */

.useful-category {
    min-height: 88px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px;

    color: #58636d;
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 13px;

    text-align: center;

    transition:
        transform .2s,
        box-shadow .2s,
        border-color .2s,
        color .2s,
        background .2s;
}


/* HOVER — MESMO PADRÃO DAS CATEGORIAS */

.useful-category:hover {
    transform: translateY(-3px);

    color: var(--white);
    background: var(--green);

    border-color: var(--green);

    box-shadow:
        0 10px 25px
        rgba(0, 200, 83, .20);
}


/* =========================================================
   ÍCONE
========================================================= */

.useful-category-icon {
    display: block;

    width: auto;
    height: auto;

    color: inherit;
    background: transparent;

    border: 0;
    border-radius: 0;

    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   TEXTO
========================================================= */

.useful-category-content {
    display: block;

    margin: 0;
}

.useful-category-content strong {
    display: block;

    color: inherit;

    font-size: 8px;
    font-weight: 600;
}


/* ESCONDE A DESCRIÇÃO PEQUENA */

.useful-category-content span {
    display: none;
}


/* ESCONDE A SETA */

.useful-category-arrow {
    display: none;
}


/* REMOVE DETALHE SUPERIOR DA VERSÃO ANTERIOR */

.useful-category::before {
    display: none;
}


/* GARANTE QUE O ÍCONE FIQUE BRANCO NO HOVER */

.useful-category:hover
.useful-category-icon {
    color: var(--white);
    background: transparent;
}


/* =========================================================
   RESULTADOS - LOCAIS ÚTEIS
   MESMO GRID DOS COMÉRCIOS
========================================================= */

.useful-results {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin-top: 22px;
}

.useful-results[hidden] {
    display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .useful-results {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .useful-results {
        grid-template-columns: 1fr;

        gap: 14px;
    }

}

/* =========================================================
   FOTO DOS ITENS DA VITRINE
========================================================= */

.business-showcase-item.has-image {
    display: flex;
    align-items: center;
    gap: 14px;
}

.business-showcase-item-content {
    flex: 1;
    min-width: 0;
}

.business-showcase-thumb {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;

    padding: 0;
    overflow: hidden;

    background: #f4f6f5;
    border: 1px solid #e2e8e5;
    border-radius: 12px;

    cursor: pointer;
}

.business-showcase-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.2s ease;
}

.business-showcase-thumb:hover img {
    transform: scale(1.06);
}


/* CELULAR */

@media (max-width: 600px) {

    .business-showcase-item.has-image {
        gap: 11px;
    }

    .business-showcase-thumb {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        border-radius: 10px;
    }

}

/* =========================================================
   FOTO AMPLIADA DA VITRINE
========================================================= */

.vitrine-image-viewer {
    position: fixed;
    z-index: 99999;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.82);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease;
}

.vitrine-image-viewer.open {
    opacity: 1;
    visibility: visible;
}


.vitrine-image-viewer-content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 900px;
    max-height: 90vh;
}


.vitrine-image-viewer-content img {
    display: block;

    max-width: 90vw;
    max-height: 80vh;

    width: auto;
    height: auto;

    object-fit: contain;

    background: #ffffff;
    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}


.vitrine-image-viewer-content span {
    margin-top: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-align: center;
}


.vitrine-image-viewer-close {
    position: absolute;
    z-index: 2;

    top: -16px;
    right: -16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #111111;
    background: #ffffff;

    border: 0;
    border-radius: 50%;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.25);

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}


/* CELULAR */

@media (max-width: 600px) {

    .vitrine-image-viewer {
        padding: 20px;
    }

    .vitrine-image-viewer-content img {
        max-width: calc(100vw - 40px);
        max-height: 75vh;

        border-radius: 12px;
    }

    .vitrine-image-viewer-close {
        top: -14px;
        right: -8px;

        width: 36px;
        height: 36px;
    }

}
/* ==================================================
   DESTAQUES
================================================== */

.featured-section {
    padding: 26px 0 44px;
    overflow: hidden;
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-header .section-title {
    margin-bottom: 0;
}

.featured-counter {
    flex-shrink: 0;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}


/* ==================================================
   CARROSSEL
================================================== */

.featured-track {
    display: flex;
    gap: 18px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 2px 2px 18px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
    display: none;
}


/* ==================================================
   CARD DO DESTAQUE
================================================== */

.featured-track .business-card {
    flex: 0 0 calc((100% - 36px) / 3);

    min-width: 0;

    scroll-snap-align: start;
}


/* ==================================================
   SEM DESTAQUES
================================================== */

.featured-empty {
    padding: 20px 0;
}

.featured-empty p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .featured-track .business-card {
        flex-basis: calc((100% - 18px) / 2);
    }

}


/* ==================================================
   CELULAR
================================================== */

@media (max-width: 600px) {

    .featured-section {
        padding: 22px 0 34px;
    }

    .featured-header {
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .featured-counter {
        padding-top: 4px;
        font-size: 11px;
    }

    .featured-track {
        gap: 14px;

        /*
         * Espaço à direita para deixar visível
         * uma parte do próximo estabelecimento.
         */
        padding-right: 34px;
    }

    .featured-track .business-card {
        flex: 0 0 86%;
    }

}

/* ==================================================
   CARDS DA LISTAGEM DE COMÉRCIOS
   Destaques da home não são afetados
================================================== */

#listaComercios .business-card {
    display: grid;
    grid-template-columns: 36% 64%;
    overflow: hidden;
}


/* FOTO */

#listaComercios .business-card-image {
    width: 100%;
    height: 100%;
    min-height: 230px;
    aspect-ratio: auto;
}


/* CONTEÚDO */

#listaComercios .business-card-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}


/* BOTÃO FICA MAIS PARA BAIXO */

#listaComercios .business-card-footer {
    margin-top: auto;
}


/* ==================================================
   CELULAR
================================================== */

@media (max-width: 600px) {

    #listaComercios .business-card {
        grid-template-columns: 38% 62%;
    }

    #listaComercios .business-card-image {
        min-height: 190px;
    }

}
/* ==================================================
   GRID DA LISTAGEM DE COMÉRCIOS
   Cards horizontais
================================================== */

#listaComercios {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    #listaComercios {
        grid-template-columns: 1fr;
    }

}


/* ==================================================
   CELULAR
================================================== */

@media (max-width: 600px) {

    #listaComercios {
        grid-template-columns: 1fr;
    }

}
/* ==================================================
   SELO DE DESTAQUE
================================================== */

.business-card-featured-badge {
    position: absolute;
    z-index: 6;

    top: 14px;
    left: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 11px;

    color: #ffffff;
    background: var(--green);

    border-radius: 8px;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;

    box-shadow:
        0 5px 14px
        rgba(0, 0, 0, 0.14);
}
/* ==================================================
   CARD EM DESTAQUE - DOURADO
================================================== */

.business-card.business-card-featured {
    border: 1px solid #d9a900;

    box-shadow:
        0 8px 24px rgba(180, 135, 0, 0.12),
        0 0 0 1px rgba(217, 169, 0, 0.08);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


/* HOVER DO CARD EM DESTAQUE */

.business-card.business-card-featured:hover {
    border-color: #c99b00;

    box-shadow:
        0 12px 30px rgba(180, 135, 0, 0.17),
        0 0 0 1px rgba(217, 169, 0, 0.12);
}


/* SELO DOURADO */

.business-card-featured-badge {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #c99700,
            #e2b72b
        );

    box-shadow:
        0 5px 14px
        rgba(160, 120, 0, 0.22);
}
/* ==================================================
   VITRINE - GALERIA DE FOTOS
================================================== */

.vitrine-image-viewer {
    overflow-y: auto;
}


/* CONTEÚDO DA GALERIA */

.vitrine-image-viewer-content {
    width: min(760px, 92vw);
    max-width: 760px;
    max-height: none;
}


/* FOTO PRINCIPAL */

.vitrine-gallery-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vitrine-image-viewer-content
.vitrine-gallery-main-image {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 72vh;

    object-fit: contain;

    background: #ffffff;
    border-radius: 14px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, .35);
}


/* MINIATURAS */

.vitrine-gallery-thumbs {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 12px;
}


/* BOTÃO DE CADA MINIATURA */

.vitrine-gallery-thumb {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    padding: 0;

    overflow: hidden;

    background: #ffffff;

    border: 2px solid transparent;
    border-radius: 9px;

    opacity: .65;

    cursor: pointer;

    transition:
        opacity .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


/* IMPORTANTE:
   SOBRESCREVE O ESTILO ANTIGO DAS IMAGENS
   DO VISUALIZADOR
*/

.vitrine-image-viewer-content
.vitrine-gallery-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;

    border-radius: 7px;

    box-shadow: none;
}


/* FOTO SELECIONADA */

.vitrine-gallery-thumb.active {
    opacity: 1;
    border-color: #00c853;
}


/* HOVER */

.vitrine-gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}


/* TÍTULO */

.vitrine-image-viewer-content
.vitrine-gallery-title {
    margin-top: 12px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-align: center;
}


/* MOBILE */

@media (max-width: 600px) {

    .vitrine-image-viewer {
        padding: 18px;
    }

    .vitrine-image-viewer-content {
        width: 100%;
    }

    .vitrine-image-viewer-content
    .vitrine-gallery-main-image {
        max-height: 68vh;
    }

    .vitrine-gallery-thumb {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

}
/* ==================================================
   VITRINE - SETAS DA GALERIA
================================================== */

.vitrine-gallery-main {
    position: relative;
}


/* SETAS */

.vitrine-gallery-arrow {
    position: absolute;
    z-index: 5;

    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #202820;
    background: rgba(255, 255, 255, .92);

    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;

    box-shadow:
        0 4px 14px
        rgba(0, 0, 0, .16);

    font-size: 27px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


/* ESQUERDA */

.vitrine-gallery-arrow-prev {
    left: 14px;
}


/* DIREITA */

.vitrine-gallery-arrow-next {
    right: 14px;
}


/* HOVER */

.vitrine-gallery-arrow:hover {
    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.07);

    box-shadow:
        0 6px 18px
        rgba(0, 0, 0, .22);
}


/* MOBILE */

@media (max-width: 600px) {

    .vitrine-gallery-arrow {
        width: 34px;
        height: 34px;

        font-size: 24px;
    }

    .vitrine-gallery-arrow-prev {
        left: 9px;
    }

    .vitrine-gallery-arrow-next {
        right: 9px;
    }

}

/* ==================================================
   VITRINE - INFORMAÇÕES DO ITEM NA GALERIA
================================================== */

.vitrine-gallery-info {
    width: 100%;
    margin-top: 16px;
    padding: 18px 20px;

    color: #17201b;
    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, .14);
}


/* ==================================================
   NOME + PREÇO
================================================== */

.vitrine-gallery-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.vitrine-gallery-info-header h3 {
    margin: 0;

    color: #17201b;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}


/* ==================================================
   PREÇO
================================================== */

.vitrine-gallery-price {
    flex: 0 0 auto;

    color: #00a947;

    font-size: 18px;
    font-weight: 800;

    white-space: nowrap;
}


/* ==================================================
   DESCRIÇÃO
================================================== */

.vitrine-gallery-description {
    margin: 8px 0 0;

    color: #66706a;

    font-size: 14px;
    line-height: 1.55;
}


/* ==================================================
   DETALHES
================================================== */

.vitrine-gallery-details {
    margin-top: 15px;
    padding-top: 14px;

    border-top: 1px solid #e6ebe8;
}


.vitrine-gallery-details > strong {
    display: block;

    margin-bottom: 5px;

    color: #303a34;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .04em;
}


.vitrine-gallery-details p {
    margin: 0;

    color: #59635d;

    font-size: 13px;
    line-height: 1.6;

    white-space: pre-line;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .vitrine-gallery-info {
        margin-top: 13px;

        padding: 15px 16px;

        border-radius: 12px;
    }


    .vitrine-gallery-info-header {
        gap: 12px;
    }


    .vitrine-gallery-info-header h3 {
        font-size: 16px;
    }


    .vitrine-gallery-price {
        font-size: 16px;
    }


    .vitrine-gallery-description {
        font-size: 13px;
    }


    .vitrine-gallery-details {
        margin-top: 13px;
        padding-top: 12px;
    }


    .vitrine-gallery-details p {
        font-size: 13px;
    }

}

/* ==================================================
   AJUSTE FINAL - GALERIA + INFORMAÇÕES
================================================== */

.vitrine-image-viewer {
    padding: 24px;
    overflow-y: auto;
}

.vitrine-image-viewer-content {
    width: min(680px, 92vw);
    margin: auto;
    padding: 12px 0 24px;
}


/* FOTO PRINCIPAL */

.vitrine-image-viewer-content
.vitrine-gallery-main-image {
    max-width: 100%;
    max-height: 58vh;
}


/* MINIATURAS */

.vitrine-gallery-thumbs {
    margin-top: 10px;
}


/* INFORMAÇÕES */

.vitrine-gallery-info {
    margin-top: 12px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .vitrine-image-viewer {
        align-items: flex-start;
        padding: 16px;
    }

    .vitrine-image-viewer-content {
        width: 100%;
        padding-top: 36px;
    }

    .vitrine-image-viewer-content
    .vitrine-gallery-main-image {
        max-height: 52vh;
    }

}
/* =========================================================
   BAIRRON — FILTROS DA VITRINE
========================================================= */

.business-showcase-filters {
    display: flex;
    align-items: center;

    gap: 8px;

    width: 100%;

    margin: 0 0 18px;
    padding: 2px 0 6px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.business-showcase-filters::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   BOTÃO DE CATEGORIA
========================================================= */

.business-showcase-filter {
    flex: 0 0 auto;

    min-height: 34px;

    padding: 8px 14px;

    color: #66717a;
    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 30px;

    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color .2s,
        background .2s,
        border-color .2s,
        transform .2s;
}


/* HOVER */

.business-showcase-filter:hover {
    color: var(--green);

    border-color:
        rgba(0, 200, 83, .40);

    background:
        rgba(0, 200, 83, .04);
}


/* SELECIONADO */

.business-showcase-filter.active {
    color: #ffffff;
    background: var(--green);

    border-color: var(--green);

    box-shadow:
        0 6px 16px
        rgba(0, 200, 83, .16);
}


/* =========================================================
   GRUPOS FILTRADOS
========================================================= */

.business-showcase-group[hidden] {
    display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .business-showcase-filters {
        gap: 7px;

        margin-bottom: 15px;

        padding-bottom: 5px;
    }


    .business-showcase-filter {
        min-height: 32px;

        padding:
            7px 12px;

        font-size: 8px;
    }

}