/* /Components/CMS/BairroPostCMS.razor.rz.scp.css */
/* BairroPostCMS.razor.css */

/* Layout base */
.container[b-ztgo2hq927] {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

h3[b-ztgo2hq927] {
    margin: 8px 0 18px;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 750;
    letter-spacing: -0.01em;
}

/* Card do formulário */
.gb-form[b-ztgo2hq927] {
    --surface: var(--gb-surface, #ffffff);
    --text: var(--gb-text, #0f172a);
    --muted: var(--gb-muted, #64748b);
    --border: var(--gb-border, rgba(15, 23, 42, 0.14));
    --ring: var(--gb-ring, rgba(37, 99, 235, 0.32));
    --danger: var(--gb-danger, #b91c1c);
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.gb-form__field[b-ztgo2hq927] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

    .gb-form__field > label[b-ztgo2hq927] {
        font-weight: 650;
        font-size: 0.95rem;
    }

/* Inputs */
.gb-input[b-ztgo2hq927] {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    color: inherit;
    outline: none;
    transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

    .gb-input[b-ztgo2hq927]::placeholder {
        color: var(--muted);
        opacity: 0.95;
    }

    .gb-input:focus[b-ztgo2hq927] {
        border-color: rgba(37, 99, 235, 0.65);
        box-shadow: 0 0 0 4px var(--ring);
        background: #fff;
    }

    /* Blazor costuma aplicar classes "modified invalid"/"invalid" automaticamente */
    .gb-input.invalid[b-ztgo2hq927],
    .gb-input.modified.invalid[b-ztgo2hq927] {
        border-color: rgba(185, 28, 28, 0.7);
        box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.18);
        background: #fff;
    }

/* Mensagens de validação do Blazor */
.validation-message[b-ztgo2hq927] {
    font-size: 0.875rem;
    color: var(--danger);
    line-height: 1.25;
    margin-top: 2px;
}

/* Botão */
.gb-btn[b-ztgo2hq927] {
    height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    font-weight: 750;
    cursor: pointer;
    background: var(--gb-primary, #2563eb);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
    width: 100%;
}

    .gb-btn:hover[b-ztgo2hq927] {
        filter: brightness(0.98);
        box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
    }

    .gb-btn:active[b-ztgo2hq927] {
        transform: translateY(1px);
    }

    .gb-btn:focus-visible[b-ztgo2hq927] {
        outline: none;
        box-shadow: 0 0 0 4px var(--ring), 0 14px 28px rgba(37, 99, 235, 0.26);
    }

    .gb-btn:disabled[b-ztgo2hq927] {
        cursor: not-allowed;
        opacity: 0.75;
        box-shadow: none;
        transform: none;
    }

/* Responsivo (mobile-first) */
@media (min-width: 900px) {
    .gb-form[b-ztgo2hq927] {
        padding: 22px;
        gap: 18px 20px;
    }

    .gb-btn[b-ztgo2hq927] {
        grid-column: 1 / -1;
        justify-self: start;
        width: auto;
        min-width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gb-btn[b-ztgo2hq927],
    .gb-input[b-ztgo2hq927] {
        transition: none;
    }
}
/* /Components/Layout/Cabecalho.razor.rz.scp.css */
.gb-header__inner[b-bugh2sb61m] {
    margin: 0 auto;
    padding: 0 16px;
    min-height: 64px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "left center right";
    align-items: center;
    gap: 16px;
}

.gb-header__left[b-bugh2sb61m] {
    grid-area: left;
    display: flex;
    align-items: center;
}

.gb-header__center[b-bugh2sb61m] {
    grid-area: center;
    display: flex;
    align-items: center;
    min-width: 0;
}

.gb-header__right[b-bugh2sb61m] {
    grid-area: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.gb-header__search[b-bugh2sb61m] {
    width: 100%;
    display: flex;
    align-items: center;
    min-width: 0;
}

/* <= 900px */
@media (max-width: 900px) {
    .gb-header__inner[b-bugh2sb61m] {
        gap: 12px;
    }
}

/* <= 520px (aqui sim faz sentido a busca ir pra baixo) */
@media (max-width: 520px) {
    .gb-header__inner[b-bugh2sb61m] {
        padding: 10px 12px;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "left right"
            "center center";
        row-gap: 10px;
        column-gap: 12px;
    }
}
:root[b-bugh2sb61m] {
    --gb-header-h: 64px;
}

.gb-header[b-bugh2sb61m] {
    box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 16px 36px rgba(0,0,0,.14), 0 6px 16px rgba(0,0,0,.08);
}
/* /Components/Layout/LayoutCMS.razor.rz.scp.css */
body[b-wcxrlho1od] {
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* /Components/Layout/Rodape.razor.rz.scp.css */
.gb-footer[b-2v5euzvqg8] {
    background: var(--azul-escuro, #071a2b);
    color: var(--branco, #fff);
    margin-top: 40px;
}

.gb-footer__top[b-2v5euzvqg8] {
    padding: 28px 0;
    display: grid;
    gap: 22px;
}

.gb-footer__brand[b-2v5euzvqg8] {
    min-width: 0;
}

.gb-footer__logo[b-2v5euzvqg8] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.gb-footer__logoMark[b-2v5euzvqg8] {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gb-footer__logoText[b-2v5euzvqg8] {
    font-weight: 800;
    letter-spacing: 0.2px;
}

.gb-footer__desc[b-2v5euzvqg8] {
    margin: 10px 0 0;
    max-width: 52ch;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.80);
}

.gb-footer__social[b-2v5euzvqg8] {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gb-footer__socialLink[b-2v5euzvqg8] {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.gb-footer__nav[b-2v5euzvqg8] {
    display: grid;
    gap: 18px;
}

.gb-footer__col[b-2v5euzvqg8] {
    min-width: 0;
}

.gb-footer__title[b-2v5euzvqg8] {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.gb-footer__list[b-2v5euzvqg8] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.gb-footer__link[b-2v5euzvqg8] {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    display: inline-block;
    line-height: 1.35;
}

.gb-footer__muted[b-2v5euzvqg8] {
    color: rgba(255, 255, 255, 0.60);
}

.gb-footer__bottom[b-2v5euzvqg8] {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.12);
}

.gb-footer__bottomInner[b-2v5euzvqg8] {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.gb-footer__copy[b-2v5euzvqg8] {
    color: rgba(255, 255, 255, 0.78);
}

.gb-footer__toTop[b-2v5euzvqg8] {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 700;
}

/* Acessibilidade: foco visível */
.gb-footer a:focus-visible[b-2v5euzvqg8] {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
    border-radius: 10px;
}

/* Responsivo (mobile-first com min-width) */
@media (min-width: 720px) {
    .gb-footer__top[b-2v5euzvqg8] {
        grid-template-columns: 1.1fr 1.9fr;
        align-items: start;
        gap: 28px;
    }

    .gb-footer__nav[b-2v5euzvqg8] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}
/* /Components/Pages/BairroListPage.razor.rz.scp.css */
.gb-search[b-uxf40af9fz] {
    position: relative;
    width: 100%;
}

.gb-search__input[b-uxf40af9fz] {
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    display: block;
    padding: 0 52px 0 52px; /* reserva espaço p/ ícone e botão */
    border-radius: 999px;
    border: 1px solid var(--borda-1, rgba(0,0,0,.14));
    background: var(--fundo-1, #fff);
    box-shadow: var(--sombra-1, 0 10px 28px rgba(0,0,0,.10));
    color: var(--texto-1, #111);
    font: inherit;
    font-size: 1rem;
    line-height: 1.2;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: left; /* evita herança de text-align do container */
    direction: ltr; /* evita qualquer herança estranha */
}

    /* remove “decorações” do type=search (Chrome/Safari) */
    .gb-search__input[b-uxf40af9fz]::-webkit-search-decoration,
    .gb-search__input[b-uxf40af9fz]::-webkit-search-cancel-button,
    .gb-search__input[b-uxf40af9fz]::-webkit-search-results-button,
    .gb-search__input[b-uxf40af9fz]::-webkit-search-results-decoration {
        -webkit-appearance: none;
    }

    .gb-search__input:focus[b-uxf40af9fz] {
        border-color: var(--azul-escuro, #0b2a4a);
        box-shadow: var(--sombra-1, 0 10px 28px rgba(0,0,0,.10)), 0 0 0 4px color-mix(in srgb, var(--azul-escuro, #0b2a4a) 18%, transparent);
    }

.gb-search__icon[b-uxf40af9fz] {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--texto-2, rgba(0,0,0,.55));
    pointer-events: none;
}

    .gb-search__icon svg[b-uxf40af9fz] {
        width: 20px;
        height: 20px;
        fill: currentColor;
        display: block;
    }

.gb-search__clear[b-uxf40af9fz] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--texto-2, rgba(0,0,0,.55));
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .gb-search__clear:hover[b-uxf40af9fz] {
        background: color-mix(in srgb, var(--azul-escuro, #0b2a4a) 10%, transparent);
        color: var(--azul-escuro, #0b2a4a);
    }

    .gb-search__clear svg[b-uxf40af9fz] {
        width: 18px;
        height: 18px;
        fill: currentColor;
        display: block;
    }

    /* mantém o layout estável (não “abre espaço” quando não tem texto) */
    .gb-search__clear.is-hidden[b-uxf40af9fz] {
        visibility: hidden;
        pointer-events: none;
    }

/* acessibilidade */
.gb-sr-only[b-uxf40af9fz] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ordem correta: max-width menor por último */
@media (max-width: 640px) {
    .gb-search__input[b-uxf40af9fz] {
        height: 50px;
    }
}

.gb-pager[b-uxf40af9fz] {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--espaco-4, 2rem);
}

.gb-pager__btn[b-uxf40af9fz],
.gb-pager__page[b-uxf40af9fz] {
    padding: .65rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--borda-1, rgba(255,255,255,.12));
    background: var(--fundo-1, rgba(0,0,0,.25));
    color: var(--texto-1, #fff);
    cursor: pointer;
}

    .gb-pager__btn:disabled[b-uxf40af9fz] {
        opacity: .45;
        cursor: default;
    }

    .gb-pager__page.is-active[b-uxf40af9fz] {
        border-color: var(--azul-escuro, #0b2a4a);
        outline: 3px solid color-mix(in srgb, var(--azul-escuro, #0b2a4a) 22%, transparent);
        outline-offset: 2px;
    }

.gb-pager__info[b-uxf40af9fz] {
    color: var(--texto-2, rgba(255,255,255,.72));
    font-size: .95rem;
}
/* /Components/Pages/BairroPage.razor.rz.scp.css */
/* /Components/Pages/BairroPostListPage.razor.rz.scp.css */
.gb-search[b-ihmg0i5d3n] {
    position: relative;
    width: 100%;
}

.gb-search__input[b-ihmg0i5d3n] {
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    display: block;
    padding: 0 52px 0 52px; /* reserva espaço p/ ícone e botão */
    border-radius: 999px;
    border: 1px solid var(--borda-1, rgba(0,0,0,.14));
    background: var(--fundo-1, #fff);
    box-shadow: var(--sombra-1, 0 10px 28px rgba(0,0,0,.10));
    color: var(--texto-1, #111);
    font: inherit;
    font-size: 1rem;
    line-height: 1.2;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: left; /* evita herança de text-align do container */
    direction: ltr; /* evita qualquer herança estranha */
}

    /* remove “decorações” do type=search (Chrome/Safari) */
    .gb-search__input[b-ihmg0i5d3n]::-webkit-search-decoration,
    .gb-search__input[b-ihmg0i5d3n]::-webkit-search-cancel-button,
    .gb-search__input[b-ihmg0i5d3n]::-webkit-search-results-button,
    .gb-search__input[b-ihmg0i5d3n]::-webkit-search-results-decoration {
        -webkit-appearance: none;
    }

    .gb-search__input:focus[b-ihmg0i5d3n] {
        border-color: var(--azul-escuro, #0b2a4a);
        box-shadow: var(--sombra-1, 0 10px 28px rgba(0,0,0,.10)), 0 0 0 4px color-mix(in srgb, var(--azul-escuro, #0b2a4a) 18%, transparent);
    }

.gb-search__icon[b-ihmg0i5d3n] {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--texto-2, rgba(0,0,0,.55));
    pointer-events: none;
}

    .gb-search__icon svg[b-ihmg0i5d3n] {
        width: 20px;
        height: 20px;
        fill: currentColor;
        display: block;
    }

.gb-search__clear[b-ihmg0i5d3n] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--texto-2, rgba(0,0,0,.55));
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .gb-search__clear:hover[b-ihmg0i5d3n] {
        background: color-mix(in srgb, var(--azul-escuro, #0b2a4a) 10%, transparent);
        color: var(--azul-escuro, #0b2a4a);
    }

    .gb-search__clear svg[b-ihmg0i5d3n] {
        width: 18px;
        height: 18px;
        fill: currentColor;
        display: block;
    }

    /* mantém o layout estável (não “abre espaço” quando não tem texto) */
    .gb-search__clear.is-hidden[b-ihmg0i5d3n] {
        visibility: hidden;
        pointer-events: none;
    }

/* acessibilidade */
.gb-sr-only[b-ihmg0i5d3n] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ordem correta: max-width menor por último */
@media (max-width: 640px) {
    .gb-search__input[b-ihmg0i5d3n] {
        height: 50px;
    }
}

.gb-pager[b-ihmg0i5d3n] {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--espaco-4, 2rem);
}

.gb-pager__btn[b-ihmg0i5d3n],
.gb-pager__page[b-ihmg0i5d3n] {
    padding: .65rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--borda-1, rgba(255,255,255,.12));
    background: var(--fundo-1, rgba(0,0,0,.25));
    color: var(--texto-1, #fff);
    cursor: pointer;
}

    .gb-pager__btn:disabled[b-ihmg0i5d3n] {
        opacity: .45;
        cursor: default;
    }

    .gb-pager__page.is-active[b-ihmg0i5d3n] {
        border-color: var(--azul-escuro, #0b2a4a);
        outline: 3px solid color-mix(in srgb, var(--azul-escuro, #0b2a4a) 22%, transparent);
        outline-offset: 2px;
    }

.gb-pager__info[b-ihmg0i5d3n] {
    color: var(--texto-2, rgba(255,255,255,.72));
    font-size: .95rem;
}
/* /Components/Pages/BairroPostPage.razor.rz.scp.css */
/* /Components/Pages/BuscaPage.razor.rz.scp.css */
body[b-ukpwswslq3] {
}
/* /Components/Pages/CidadePage.razor.rz.scp.css */
/*.city-guide {
    background: #fff;
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
}

.city-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.city-guide__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border-radius: 14px;
    text-decoration: none;
    color: #111;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .city-guide__item img {
        width: 32px;
        height: 32px;
    }

    .city-guide__item span {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .city-guide__item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    }*/

/* ===== Base utilitária (pode reaproveitar no site todo) ===== */
/*.gb-container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.gb-section {
    padding-block: clamp(2.5rem, 4vw, 4rem);
}*/

/* ===== Sessão: História ===== */
/*.gb-history {*/
    /* fundo claro para contrastar com o hero */
    /*background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 100%);
}

.gb-history__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: start;
}*/

/* Texto */
/*.gb-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.62);
    margin: 0 0 .75rem 0;
}

    .gb-kicker::before {
        content: "";
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.20);
    }

.gb-history__title {
    margin: 0 0 .9rem 0;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.92);
}

.gb-history__lead {
    margin: 0 0 1.1rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.78);
}

.gb-history__body p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.74);
}

.gb-history__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}*/

/* Pills */
/*.gb-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .45rem .7rem;
    font-size: .9rem;
    line-height: 1;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.7);
    color: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
}*/

/* Ações */
/*.gb-history__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}*/

/* Botões (sem JS, acessível) */
/*.gb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .8rem 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

    .gb-btn:focus-visible {
        outline: 3px solid rgba(0, 0, 0, 0.25);
        outline-offset: 2px;
    }

.gb-btn--primary {
    background: rgba(0,0,0,0.92);
    color: #fff;
}

    .gb-btn--primary:hover {
        transform: translateY(-1px);
        opacity: .96;
    }

.gb-btn--ghost {
    background: rgba(255,255,255,0.75);
    color: rgba(0,0,0,0.86);
    border-color: rgba(0,0,0,0.12);
}

    .gb-btn--ghost:hover {
        transform: translateY(-1px);
        border-color: rgba(0,0,0,0.18);
    }*/

/* Coluna visual */
/*.gb-history__aside {
    position: relative;
}

.gb-history__media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.04);
}

.gb-history__img {
    display: block;
    width: 100%;
    height: auto;
}

.gb-history__cards {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}

.gb-mini {
    border-radius: 16px;
    padding: .9rem 1rem;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.70);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
}

.gb-mini__k {
    margin: 0 0 .25rem 0;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.58);
}

.gb-mini__v {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(0,0,0,0.82);
}*/

/* Responsivo */
/*@media (max-width: 980px) {
    .gb-history__grid {
        grid-template-columns: 1fr;
    }

    .gb-history__aside {
        order: -1;*/ /* imagem sobe para dar impacto no mobile */
    /*}

    .gb-history__actions {
        gap: .6rem;
    }

    .gb-btn {
        width: 100%;
    }
}*/
/* ===== Sessão: Curiosidades ===== */
/*.gb-curiosidades {
    background: #fff;
}

.gb-curiosidades__header {
    max-width: 720px;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.gb-curiosidades__title {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-curiosidades__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Grid */
/*.gb-curiosidades__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}*/

/* Card */
/*.gb-curiosidade {
    padding: 1.25rem 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.02);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

    .gb-curiosidade:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .gb-curiosidade h3 {
        margin: 0 0 .4rem 0;
        font-size: 1.05rem;
        line-height: 1.3;
        color: rgba(0,0,0,0.88);
    }

    .gb-curiosidade p {
        margin: 0;
        font-size: .95rem;
        line-height: 1.6;
        color: rgba(0,0,0,0.72);
    }*/

/* Responsivo */
/*@media (max-width: 1024px) {
    .gb-curiosidades__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gb-curiosidades__grid {
        grid-template-columns: 1fr;
    }
}*/
/* ===== Sessão: Explore por regiões ===== */
/*.gb-explore {
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.00) 100%);
}

.gb-explore__header {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gb-explore__title {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-explore__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Grid regiões */
/*.gb-explore__regions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.4rem);
}

.gb-region {
    display: block;
    text-decoration: none;
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.75);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

    .gb-region:hover {
        transform: translateY(-2px);
        border-color: rgba(0,0,0,0.12);
        box-shadow: 0 16px 40px rgba(0,0,0,0.09);
    }

    .gb-region:focus-visible {
        outline: 3px solid rgba(0,0,0,0.25);
        outline-offset: 2px;
    }

.gb-region__kicker {
    display: inline-block;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.58);
    margin-bottom: .35rem;
}

.gb-region__title {
    margin: 0 0 .35rem 0;
    font-size: 1.1rem;
    line-height: 1.25;
    color: rgba(0,0,0,0.88);
}

.gb-region__desc {
    margin: 0 0 .75rem 0;
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}

.gb-region__meta {
    display: block;
    font-size: .9rem;
    line-height: 1.35;
    color: rgba(0,0,0,0.62);
}*/

/* Destaques */
/*.gb-explore__featured {
    margin-top: clamp(1.25rem, 3vw, 2rem);
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.75);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
}

.gb-explore__featuredHeader {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.gb-explore__featuredTitle {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(0,0,0,0.88);
}

.gb-explore__featuredLink {
    text-decoration: none;
    font-weight: 650;
    color: rgba(0,0,0,0.82);
    border-bottom: 1px solid rgba(0,0,0,0.18);
}

    .gb-explore__featuredLink:hover {
        border-bottom-color: rgba(0,0,0,0.35);
    }*/

/* Chips bairros */
/*.gb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.gb-chip {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: .55rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(0,0,0,0.02);
    color: rgba(0,0,0,0.84);
    font-weight: 600;
    font-size: .95rem;
    transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

    .gb-chip:hover {
        transform: translateY(-1px);
        border-color: rgba(0,0,0,0.18);
        background: rgba(0,0,0,0.03);
    }

    .gb-chip:focus-visible {
        outline: 3px solid rgba(0,0,0,0.25);
        outline-offset: 2px;
    }*/

/* Responsivo */
/*@media (max-width: 1024px) {
    .gb-explore__regions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gb-explore__regions {
        grid-template-columns: 1fr;
    }

    .gb-explore__featuredHeader {
        flex-direction: column;
        align-items: flex-start;
    }
}*/
/* ===== Sessão: Mapa ===== */
/*.gb-map {
    padding-top: clamp(2.5rem, 4vw, 4rem);
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
    background: #fff;
}*/

/* Header */
/*.gb-map__header {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.gb-map__title {
    margin: 0 0 .45rem 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-map__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Full width wrapper */
/*.gb-map__wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: clamp(360px, 50vh, 520px);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.03);
}*/

/* Iframe */
/*.gb-map__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}*/

/* Actions */
/*.gb-map__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}*/

/* Responsivo */
/*@media (max-width: 560px) {
    .gb-map__actions {
        flex-direction: column;
    }

        .gb-map__actions .gb-btn {
            width: 100%;
        }
}*/
/* ===== Sessão: Gastronomia ===== */
/*.gb-gastro {
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.00) 100%);
}

.gb-gastro__header {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gb-gastro__title {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-gastro__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Grid */
/*.gb-gastro__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.4rem);
}*/

/* Card */
/*.gb-gastroCard {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1.3rem 1.35rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.75);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

    .gb-gastroCard:hover {
        transform: translateY(-2px);
        border-color: rgba(0,0,0,0.12);
        box-shadow: 0 18px 45px rgba(0,0,0,0.09);
    }

    .gb-gastroCard h3 {
        margin: 0 0 .45rem 0;
        font-size: 1.05rem;
        line-height: 1.3;
        color: rgba(0,0,0,0.9);
    }

    .gb-gastroCard p {
        margin: 0 0 auto 0;
        font-size: .95rem;
        line-height: 1.6;
        color: rgba(0,0,0,0.72);
    }

.gb-gastroCard__cta {
    margin-top: .9rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    width: fit-content;
}*/

/* Actions */
/*.gb-gastro__actions {
    margin-top: clamp(1.25rem, 3vw, 2rem);
}*/

/* Responsivo */
/*@media (max-width: 1024px) {
    .gb-gastro__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gb-gastro__grid {
        grid-template-columns: 1fr;
    }

    .gb-gastro__actions .gb-btn {
        width: 100%;
    }
}*/

/* ===== Sessão: Guias ===== */
/*.gb-guides {
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.00) 100%);
}

.gb-guides__header {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gb-guides__title {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-guides__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Grid */
/*.gb-guides__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.4rem);
}*/

/* Card */
/*.gb-guide {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1.3rem 1.35rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.75);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

    .gb-guide:hover {
        transform: translateY(-2px);
        border-color: rgba(0,0,0,0.12);
        box-shadow: 0 18px 45px rgba(0,0,0,0.09);
    }

    .gb-guide:focus-visible {
        outline: 3px solid rgba(0,0,0,0.25);
        outline-offset: 2px;
    }

.gb-guide__kicker {
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.58);
    margin-bottom: .4rem;
}

.gb-guide__title {
    margin: 0 0 .45rem 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: rgba(0,0,0,0.9);
}

.gb-guide__desc {
    margin: 0 0 auto 0;
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}

.gb-guide__cta {
    margin-top: .9rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    width: fit-content;
}*/

/* Responsivo */
/*@media (max-width: 1024px) {
    .gb-guides__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gb-guides__grid {
        grid-template-columns: 1fr;
    }
}*/
/* ===== Sessão: FAQ ===== */
/*.gb-faq {
    background: #fff;
}

.gb-faq__header {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gb-faq__title {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-faq__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Lista */
/*.gb-faq__list {
    max-width: 820px;
}*/

/* Item */
/*.gb-faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.10);
    padding-block: .85rem;
}

    .gb-faq__item summary {
        cursor: pointer;
        font-weight: 650;
        font-size: 1rem;
        color: rgba(0,0,0,0.88);
        list-style: none;
    }

        .gb-faq__item summary::-webkit-details-marker {
            display: none;
        }

        .gb-faq__item summary::after {
            content: "+";
            float: right;
            font-size: 1.2rem;
            line-height: 1;
            color: rgba(0,0,0,0.55);
            transition: transform 120ms ease;
        }

    .gb-faq__item[open] summary::after {
        content: "–";
    }

    .gb-faq__item p {
        margin: .6rem 0 0 0;
        font-size: .95rem;
        line-height: 1.65;
        color: rgba(0,0,0,0.72);
    }*/

    /* Acessibilidade */
    /*.gb-faq__item summary:focus-visible {
        outline: 3px solid rgba(0,0,0,0.25);
        outline-offset: 2px;
    }*/
/* ===== Sessão: Serviços ===== */
/*.gb-services {
    background: #fff;
}

.gb-services__header {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gb-services__title {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-services__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}*/

/* Grid */
/*.gb-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.4rem);
}*/

/* Card */
/*.gb-service {
    padding: 1.25rem 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.02);
}

    .gb-service h3 {
        margin: 0 0 .4rem 0;
        font-size: 1.05rem;
        line-height: 1.3;
        color: rgba(0,0,0,0.88);
    }

    .gb-service p {
        margin: 0 0 .75rem 0;
        font-size: .95rem;
        line-height: 1.6;
        color: rgba(0,0,0,0.72);
    }

.gb-service__link {
    font-weight: 700;
    text-decoration: none;
    color: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(0,0,0,0.25);
}

    .gb-service__link:hover {
        border-bottom-color: rgba(0,0,0,0.4);
    }*/

/* Responsivo */
/*@media (max-width: 1024px) {
    .gb-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gb-services__grid {
        grid-template-columns: 1fr;
    }
}*/
/* /Components/Pages/Cidades/Florianopolis/Campeche.razor.rz.scp.css */


.section[b-6yus6birvb] {    
    color: var(--azul);
}

.section-titulo[b-6yus6birvb] {
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-intro[b-6yus6birvb] {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.section-historia[b-6yus6birvb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}


.cards-grid[b-6yus6birvb] {
    margin: 40px;
    margin-top: -40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.separator-svg[b-6yus6birvb] {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .separator-svg svg[b-6yus6birvb] {
        width: 100%;
        height: 120px;
        display: block;
    }





/* Hero: mantém visual; corrige caminho absoluto e acessibilidade */
/*.hero-bg {
    background-image: url('/imagens/cidades/florianopolis/bairros/campeche/campeche-capa.jpg');
}*/

/* Cards grid */
/*.cards-grid {
    margin: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}*/

/* ------------------ Seção: #sobre-campeche ------------------ */

/*#sobre-campeche {
    padding-block: 1.5rem;
}

    #sobre-campeche .container {
        max-width: 1120px;
        margin-inline: auto;
        padding-inline: clamp(1rem, 2vw, 2rem);
    }*/

    /* Títulos e textos */
    /*#sobre-campeche .section-title {
        font-size: clamp(1.8rem, 3vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    #sobre-campeche .section-intro {
        color: var(--gb-muted, #62666d);
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }*/

    /* Figures apenas na seção */
    /*#sobre-campeche .media {
        border-radius: 12px;
        overflow: clip;
        box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 12px rgba(0,0,0,.06);
        background: #f7f8fa;
    }

        #sobre-campeche .media img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 3 / 2;
        }

    #sobre-campeche .media--lead img {
        aspect-ratio: 16 / 9;
    }

    #sobre-campeche .media figcaption {
        font-size: .95rem;
        color: var(--gb-muted, #62666d);
        padding: .5rem .875rem;
        border-top: 1px solid #e6e8eb;
        background: #fbfcfd;
    }*/

    /* Grid local (texto + imagem) */
    /*#sobre-campeche .sobre-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
        align-items: start;
        margin-bottom: 2.5rem;
    }

    #sobre-campeche .sobre-grid--reverse {
        grid-template-columns: 0.9fr 1.1fr;
    }

@media (max-width: 880px) {
    #sobre-campeche .sobre-grid,
    #sobre-campeche .sobre-grid--reverse {
        grid-template-columns: 1fr;
    }
}

#sobre-campeche .sobre-col h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    margin-bottom: .5rem;
}

#sobre-campeche .sobre-col p {
    line-height: 1.7;
}*/

/* Listas */
/*#sobre-campeche .lista {
    margin: 0 0 1rem;
}

    #sobre-campeche .lista.simples {
        padding-left: 1.1em;
    }

        #sobre-campeche .lista.simples li {
            margin-bottom: .5rem;
        }

    #sobre-campeche .lista.icones {
        list-style: none;
        padding-left: 0;
    }

        #sobre-campeche .lista.icones li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: .6rem;
        }

            #sobre-campeche .lista.icones li::before {
                content: "•";
                position: absolute;
                left: 0;
                top: 0;
                color: var(--gb-accent, #0ea5e9);
                font-weight: 700;
                transform: translateY(2px);
            }*/

/* Box de fatos */
/*#sobre-campeche .box-fatos {
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    padding: 1.25rem;
    background: #fbfcfd;
    box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 12px rgba(0,0,0,.06);
}

#sobre-campeche .box-fatos__titulo {
    font-size: 1.1rem;
    margin-bottom: .75rem;
}

#sobre-campeche .fatos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1rem;
    margin: 0 0 .5rem;
}

    #sobre-campeche .fatos dt {
        font-size: .9rem;
        color: var(--gb-muted, #62666d);
    }

    #sobre-campeche .fatos dd {
        margin: .25rem 0 0;
        font-weight: 600;
    }

@media (max-width: 600px) {
    #sobre-campeche .fatos {
        grid-template-columns: 1fr;
    }
}*/

/* Como chegar */
/*#sobre-campeche .como-chegar {
    margin-block: 2.5rem 0;
    border-top: 1px solid #e6e8eb;
    padding-top: 2rem;
}

#sobre-campeche .botao {
    --_bg: var(--gb-accent, #0ea5e9);
    --_fg: #fff;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    background: var(--_bg);
    color: var(--_fg);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .12s ease, background .2s ease;
}

    #sobre-campeche .botao:hover {
        transform: translateY(-1px);
    }

#sobre-campeche .botao--mapa::before {
    content: "🗺️";
}*/

/* Links internos */
/*#sobre-campeche .link-interno {
    color: var(--gb-info, #1d4ed8);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
}

    #sobre-campeche .link-interno:hover {
        color: color-mix(in srgb, var(--gb-info, #1d4ed8) 85%, black);
    }*/

/* Conclusão */
/*#sobre-campeche .section-conclusao {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: #f6f8fb;
    border: 1px solid #e6e8eb;
    border-radius: 12px;
}*/

/* FAQ */
/*#sobre-campeche .faq {
    margin-top: 2.5rem;
}

    #sobre-campeche .faq h3 {
        margin-bottom: 1rem;
    }

    #sobre-campeche .faq details {
        border: 1px solid #e6e8eb;
        border-radius: 8px;
        padding: .75rem 1rem;
        background: #fbfcfd;
        margin-bottom: .75rem;
    }

        #sobre-campeche .faq details[open] {
            background: #f6f8fb;
        }

    #sobre-campeche .faq summary {
        cursor: pointer;
        font-weight: 600;
    }

    #sobre-campeche .faq p {
        margin-top: .5rem;
        color: var(--gb-muted, #62666d);
    }*/

/* ------------------ Seções genéricas ------------------ */



/*.section {
    padding-block: clamp(2rem, 3vw + 1rem, 4rem);
}

.section--infra {
    background: var(--gb-surface, #fff);
    border-top: 1px solid color-mix(in srgb, var(--gb-muted, #62666d) 12%, transparent);
}*/

/* Cabeçalho de seção */
/*.section__header {
    margin-inline: auto;
    text-align: left;
}

.section__title {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    line-height: 1.2;
    margin: 0 0 .5rem 0;
}

.section__lead {
    color: var(--gb-muted, #62666d);
    font-size: clamp(1rem, .95rem + .5vw, 1.125rem);
    line-height: 1.7;
    margin: 0;
}*/

/* Grid genérico */
/*.grid {
    display: grid;
}

.grid--features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

@media (min-width: 720px) {
    .grid--features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        margin-top: 1.75rem;
    }
}

@media (min-width: 1040px) {
    .grid--features {
        gap: 2rem;
    }
}*/

/* Cards de destaque */
/*.feature {
    border: 1px solid color-mix(in srgb, var(--gb-muted, #62666d) 18%, transparent);
    border-radius: 12px;
    padding: 1rem;
    background: color-mix(in srgb, #fff 92%, transparent);
}

.feature__title {
    font-size: clamp(1.05rem, 1rem + .5vw, 1.2rem);
    line-height: 1.3;
    margin: 0 0 .375rem 0;
}

.feature__text {
    margin: 0;
    color: var(--gb-muted, #62666d);
    line-height: 1.65;
}*/

/* Bloco SEO/LSI */
/*.seo-terms {
    margin-top: clamp(1.25rem, 2vw, 2rem);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tags__item {
    margin: 0;
    padding: 0;
}

.tag {
    display: inline-block;
    font-size: .9rem;
    line-height: 1;
    padding: .5rem .625rem;
    border-radius: 999px;
    background: #f5f6f8;
    color: #3b3f45;
    border: 1px solid #e5e7eb;
    user-select: none;
}*/

/* Acessibilidade */
/*.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}*/

/* Interações leves */
/*@media (prefers-reduced-motion: no-preference) {
    .feature {
        transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
    }

        .feature:hover {
            transform: translateY(-2px);
            border-color: color-mix(in srgb, var(--gb-muted, #62666d) 28%, transparent);
        }
}*/
/* /Components/Pages/Cidades/Florianopolis/Florianopolis.razor.rz.scp.css */

.hero-bg[b-rzlftfmgsh] {
    background-image: url('imagens/cidades/florianopolis/florianopolis-hero.jpg');
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-qru1fxbjca] {
    position: relative;
    min-height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: -96px;
    padding-top: 96px;
}

.hero-img[b-qru1fxbjca] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%; /* Ajuste onde a imagem foca */
    z-index: 0;
}

.hero-overlay[b-qru1fxbjca] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.35)
    );
}

.hero-content[b-qru1fxbjca] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1[b-qru1fxbjca] {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-content p[b-qru1fxbjca] {
    font-size: clamp(16px, 2vw, 22px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero[b-qru1fxbjca] {
        margin-top: -72px;
        padding-top: 72px;
    }
}
.section[b-qru1fxbjca] {
    padding: clamp(40px,8vw,96px) 20px
}
.container[b-qru1fxbjca] {
    max-width: var(--maxw);
    margin-inline: auto
}
.grid[b-qru1fxbjca] {
    display: grid;
    gap: clamp(16px,2vw,24px)
}

.btn[b-qru1fxbjca] {
    display: inline-block;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 600
}

.kicker[b-qru1fxbjca] {
    color: var(--brand);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: var(--sm)
}

.h2[b-qru1fxbjca] {
    font-size: clamp(24px,3vw,36px);
    line-height: 1.2;
    margin: .25em 0 .5em
}

.lead[b-qru1fxbjca] {
    font-size: clamp(16px,2.1vw,18px);
    color: var(--muted)
}

.card[b-qru1fxbjca] {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff
}

.badge[b-qru1fxbjca] {
    display: inline-block;
    font-size: .75rem;
    background: #eef3ff;
    color: #244;
    padding: .35rem .6rem;
    border-radius: 999px
}




.hero[b-qru1fxbjca] {
    position: relative;
    min-height: clamp(72vh, 88vh, 92vh);
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero__bg[b-qru1fxbjca] {
    position: absolute;
    inset: 0;
    background-image: url('/imagens/cidades/florianopolis/florianopoplis-hero.jpg');
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
}

.hero__overlay[b-qru1fxbjca] {
    position: absolute;
    inset: 0;
    /* gradiente para dar contraste no texto */
    background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.15) 100%);
}

.hero__content[b-qru1fxbjca] {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    display: grid;
    gap: 16px;
}

.hero__title[b-qru1fxbjca] {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: .2px;
    text-shadow: 0 2px 20px rgba(0,0,0,.45);
}

.hero__lead[b-qru1fxbjca] {
    font-size: clamp(16px, 2.2vw, 20px);
    opacity: .95;
    margin-bottom: .25rem;
}

.hero__about[b-qru1fxbjca] {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(14px,1.9vw,18px)
}

.hero__more[b-qru1fxbjca] {
    background: none;
    border: 0;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    padding-left: .25rem;
}

.hero__aboutMore[b-qru1fxbjca] {
    max-width: 880px;
    margin: .25rem auto 0;
    font-size: clamp(14px,1.8vw,17px);
    opacity: .95;
}


.hero__ctas[b-qru1fxbjca] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: .25rem
}

.btn[b-qru1fxbjca] {
    display: inline-block;
    padding: .8rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background: #0A4FCC;
    color: #fff;
    box-shadow: 0 10px 24px rgba(14,111,255,.22)
}

    .btn:hover[b-qru1fxbjca] {
        filter: brightness(1.07)
    }

.btn--ghost[b-qru1fxbjca] {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.65)
}

    .btn--ghost:hover[b-qru1fxbjca] {
        background: rgba(255,255,255,.12)
    }

@media (min-width: 900px) {
    .hero__content[b-qru1fxbjca] {
        gap: 18px
    }
}
.hero__content[b-qru1fxbjca] {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    padding: 20px 26px;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
}

.historia[b-qru1fxbjca] {
    padding: 80px 0;
    background: #fafafa;
}

    .historia h2[b-qru1fxbjca] {
        font-size: 2.4rem;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .historia .intro[b-qru1fxbjca] {
        max-width: 750px;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 50px;
        color: #444;
    }

.historia-grid[b-qru1fxbjca] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.historia-item[b-qru1fxbjca] {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    transition: transform .25s ease;
}

    .historia-item:hover[b-qru1fxbjca] {
        transform: translateY(-6px);
    }

    .historia-item h3[b-qru1fxbjca] {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

.cards-grid[b-qru1fxbjca] {
    margin: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
/* /Components/Pages/OLD-BairroPage.razor.rz.scp.css */

.section-title[b-9l1uvw2c2a] {
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding: 0 40px;
}

.section-title__heading[b-9l1uvw2c2a] {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
    color: #0A3A47;
}

    .section-title__heading span[b-9l1uvw2c2a] {
        color: #0A4B78;
    }

.section-title__subtitle[b-9l1uvw2c2a] {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #64748b;
    max-width: 600px;
}


.section-title--bar[b-9l1uvw2c2a] {
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding: 0 40px;
}

    .section-title--bar h2[b-9l1uvw2c2a] {
        margin: 0;
        padding-left: 16px;
        font-size: 30px;
        font-weight: 900;
        color: #0A3A47;
        border-left: 5px solid #0ea5e9;
    }

.section-title--center[b-9l1uvw2c2a] {
    text-align: center;
    margin: 0 auto 40px auto;
    padding: 0 24px;
}

    .section-title--center h2[b-9l1uvw2c2a] {
        margin: 0;
        font-size: 34px;
        font-weight: 900;
        color: #0A3A47;
    }

    .section-title--center p[b-9l1uvw2c2a] {
        margin-top: 8px;
        font-size: 16px;
        color: #64748b;
    }










.section-gastronomia[b-9l1uvw2c2a] {
    position: relative;
    overflow: hidden;
    /* Parallax simples (o que já funcionava) */
    background-image: url('/imagens/gastronomia-bairro-section.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Garanta contraste do texto */
    color: #ffffff;
}
    .section-gastronomia p[b-9l1uvw2c2a] {
        color: rgba(255,255,255,0.92);
    }

    .section-gastronomia[b-9l1uvw2c2a]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(255, 255, 255, 0.45), /* seu --azul */
        rgba(10, 75, 120, 0.65) );
        z-index: 0;
    }

    /* Conteúdo acima do overlay */
    .section-gastronomia .container[b-9l1uvw2c2a] {
        position: relative;
        z-index: 1;
    }

.gastronomia-surface[b-9l1uvw2c2a] {
    background: rgba(248, 250, 252, 0.92); /* --surface com transparência */
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

    /* texto */
    .gastronomia-surface h2[b-9l1uvw2c2a] {
        color: var(--azul);
    }

    .gastronomia-surface p[b-9l1uvw2c2a] {
        color: var(--text);
    }


/* /Components/Shared/CardBairro.razor.rz.scp.css */
.card-bairro[b-glni9rx1yb] {
    display: flex;
    flex-direction: column;
    background: var(--color-surface, #ffffff10);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.1);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .card-bairro:hover[b-glni9rx1yb] {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgb(0 0 0 / 0.30);
    }

.card-bairro__img[b-glni9rx1yb] {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-bairro__content[b-glni9rx1yb] {
    padding: 1rem 1.25rem;
    background-color: #fff;
}

.card-bairro__title[b-glni9rx1yb] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.card-bairro__desc[b-glni9rx1yb] {
    margin-top: .5rem;
    font-size: .95rem;
    opacity: .85;
    line-height: 1.4;
}
/* /Components/Shared/CardGastronomia.razor.rz.scp.css */
.rcard[b-3kd1kul7lu] {
    background: var(--surface);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 10px 22px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .rcard:hover[b-3kd1kul7lu] {
        transform: translateY(-3px);
        box-shadow: 0 3px 8px rgba(0,0,0,.08), 0 16px 34px rgba(0,0,0,.12);
    }

.rcard__link[b-3kd1kul7lu] {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

/* IMAGEM MENOR */
.rcard__media[b-3kd1kul7lu] {
    position: relative;
    margin: 0;
    overflow: hidden;
}

    .rcard__media img[b-3kd1kul7lu] {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* mais baixo que 3/2 */
        object-fit: cover;
        transition: transform .5s ease;
    }

.rcard:hover .rcard__media img[b-3kd1kul7lu] {
    transform: scale(1.06);
}

.rcard__badge[b-3kd1kul7lu] {
    position: absolute;
    left: .75rem;
    top: .75rem;
    font-size: .72rem;
    padding: .25rem .5rem;
    border-radius: 999px;
    background: rgba(10,75,120,.90);
    color: #fff;
    letter-spacing: .02em;
}

.rcard__body[b-3kd1kul7lu] {
    padding: .75rem .9rem .9rem; /* bem menor */
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.rcard__head[b-3kd1kul7lu] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .6rem;
}

.rcard__title[b-3kd1kul7lu] {
    margin: 0;
    font-size: 1.02rem; /* menor */
    line-height: 1.2;
    color: var(--text);
}

.rcard__tag[b-3kd1kul7lu] {
    font-size: .72rem;
    padding: .2rem .45rem;
    border-radius: 999px;
    background: rgba(14,165,233,.12);
    color: var(--brand-600);
    white-space: nowrap;
}

.rcard__meta[b-3kd1kul7lu] {
    margin: 0;
    font-size: .82rem;
    color: var(--muted);
}

.rcard__desc[b-3kd1kul7lu] {
    margin: 0;
    font-size: .9rem;
    line-height: 1.35;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2; /* trava em 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* /Components/Shared/CardOQueFazer.razor.rz.scp.css */
.oqf-card[b-ybe8l1heht] {
    width: 100%;
    max-width: 400px;
}

.oqf-card__link[b-ybe8l1heht] {
    display: block;
    height: 100%;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .oqf-card__link:hover[b-ybe8l1heht] {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(2, 6, 23, 0.12);
    }

/* imagem */
.oqf-card__media[b-ybe8l1heht] {
    position: relative;
    aspect-ratio: 3 / 2;
    background: #f1f5f9;
}

    .oqf-card__media img[b-ybe8l1heht] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* categoria */
.oqf-card__category[b-ybe8l1heht] {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0A3A47;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

/* corpo */
.oqf-card__body[b-ybe8l1heht] {
    padding: 14px 14px 16px;
}

.oqf-card__title[b-ybe8l1heht] {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    color: #0A3A47;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oqf-card__description[b-ybe8l1heht] {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #475569;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* tags */
.oqf-card__tags[b-ybe8l1heht] {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .oqf-card__tags li[b-ybe8l1heht] {
        font-size: 12px;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 999px;
        background: #f8fafc;
        border: 1px solid rgba(15, 23, 42, 0.12);
        color: #334155;
    }

/* CTA */
.oqf-card__cta[b-ybe8l1heht] {
    font-size: 14px;
    font-weight: 900;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* /Components/Shared/GB/GBAlerta.razor.rz.scp.css */
/* ===== Alert (estrutura) ===== */
.gb-alert[b-rcuzlteyjc] {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 14px 14px 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
    text-rendering: optimizeLegibility;
}

    /* Faixa lateral (dá acabamento "card") */
    .gb-alert[b-rcuzlteyjc]::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        border-radius: 14px 0 0 14px;
        background-color: rgba(255,255,255,.22);
    }

    /* Para temas com texto escuro, a faixa fica mais escura */
    .gb-alert.gb-neutro[b-rcuzlteyjc]::before,
    .gb-alert.gb-alerta[b-rcuzlteyjc]::before {
        background-color: rgba(15,23,42,.20);
    }

.gb-alert__icon[b-rcuzlteyjc] {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255,255,255,.22);
    font-weight: 800;
    line-height: 1;
    user-select: none;
}

/* Ícone mais discreto quando o texto for escuro */
.gb-alert.gb-neutro .gb-alert__icon[b-rcuzlteyjc],
.gb-alert.gb-alerta .gb-alert__icon[b-rcuzlteyjc] {
    background-color: rgba(15,23,42,.10);
}

.gb-alert__body[b-rcuzlteyjc] {
    min-width: 0; /* essencial pra truncar inline sem quebrar layout */
    flex: 1 1 auto;
}

.gb-alert__title[b-rcuzlteyjc] {
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1.15;
    margin: 1px 0 6px 0;
}

.gb-alert__text[b-rcuzlteyjc] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
}

.gb-alert__content[b-rcuzlteyjc] {
    font-size: 0.95rem;
    line-height: 1.35;
}

.gb-alert__list[b-rcuzlteyjc] {
    margin: 0;
    padding-left: 18px;
    font-size: 0.95rem;
    line-height: 1.35;
}

    .gb-alert__list li[b-rcuzlteyjc] {
        margin: 2px 0;
    }

/* Botão fechar */
.gb-alert__close[b-rcuzlteyjc] {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.18);
    color: inherit;
    cursor: pointer;
    transition: transform 120ms ease, background-color 120ms ease, opacity 120ms ease;
}

    .gb-alert__close:hover[b-rcuzlteyjc] {
        background: rgba(255,255,255,.26);
        transform: translateY(-1px);
    }

    .gb-alert__close:active[b-rcuzlteyjc] {
        transform: translateY(0);
        opacity: .92;
    }

    .gb-alert__close:focus-visible[b-rcuzlteyjc] {
        outline: 3px solid rgba(255,255,255,.45);
        outline-offset: 2px;
    }

/* Quando o texto do alerta é escuro, ajusta fundo do close */
.gb-alert.gb-neutro .gb-alert__close[b-rcuzlteyjc],
.gb-alert.gb-alerta .gb-alert__close[b-rcuzlteyjc] {
    background: rgba(15,23,42,.10);
}

    .gb-alert.gb-neutro .gb-alert__close:hover[b-rcuzlteyjc],
    .gb-alert.gb-alerta .gb-alert__close:hover[b-rcuzlteyjc] {
        background: rgba(15,23,42,.14);
    }

/* ===== Variações ===== */
.gb-alert--compact[b-rcuzlteyjc] {
    padding: 10px 12px 10px 14px;
    gap: 10px;
    border-radius: 12px;
}

    .gb-alert--compact[b-rcuzlteyjc]::before {
        border-radius: 12px 0 0 12px;
    }

    .gb-alert--compact .gb-alert__icon[b-rcuzlteyjc] {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

.gb-alert--inline[b-rcuzlteyjc] {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,.10);
}

    /* Inline: por padrão, não deixa quebrar linha (não estoura layout).
   Se quiser permitir quebra, basta sobrescrever no container. */
    .gb-alert--inline .gb-alert__text[b-rcuzlteyjc],
    .gb-alert--inline .gb-alert__title[b-rcuzlteyjc] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce) {
    .gb-alert__close[b-rcuzlteyjc] {
        transition: none;
    }
}

/* ===== Media query (max-width) por último, como você pediu ===== */
@media (max-width: 480px) {
    .gb-alert[b-rcuzlteyjc] {
        padding: 12px 12px 12px 14px;
        gap: 10px;
    }

    .gb-alert__close[b-rcuzlteyjc] {
        width: 34px;
        height: 34px;
    }
}
/* /Components/Shared/GB/GBBreadcrumb.razor.rz.scp.css */
.gb-breadcrumb[b-yr9n4tvm3d] {
    display: block;
}

.gb-breadcrumb__list[b-yr9n4tvm3d] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gb-breadcrumb__item[b-yr9n4tvm3d] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.gb-breadcrumb__link[b-yr9n4tvm3d] {
    color: inherit;
    text-decoration: none;
    border-radius: .5rem;
    padding: .125rem .25rem;
    font-size: var(--step--2)
}

    .gb-breadcrumb__link:hover[b-yr9n4tvm3d] {
        text-decoration: underline;
    }

.gb-breadcrumb__current[b-yr9n4tvm3d] {
    font-weight: 600;
}

.gb-breadcrumb__sep[b-yr9n4tvm3d] {
    opacity: .55;
}
/* /Components/Shared/GB/GBBusca.razor.rz.scp.css */
.gb-search[b-kruqvof7uj] {
    position: relative;
    width: 100%;
}

.gb-search-form[b-kruqvof7uj] {
    display: block;
    width: 100%;
}

.gb-combobox[b-kruqvof7uj] {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.gb-search-input[b-kruqvof7uj] {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0; /* CRÍTICO: permite encolher no grid */
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    outline: none;
    color: var(--azul-escuro);
}

    .gb-search-input:focus[b-kruqvof7uj] {
        border-color: rgba(2, 132, 199, 0.55);
        box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
    }

.gb-search-btn[b-kruqvof7uj] {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    cursor: pointer;
    color: var(--azul-escuro);
}

/* <= 520px */
@media (max-width: 520px) {
    .gb-combobox[b-kruqvof7uj] {
        gap: 6px;
    }

    .gb-search-input[b-kruqvof7uj] {
        padding: 10px 10px;
    }

    .gb-search-btn[b-kruqvof7uj] {
        padding: 10px 10px;
    }
}
/* /Components/Shared/GB/GBCardIcone.razor.rz.scp.css */
.gb-card-icone[b-o2eetv4hto] {
    width: var(--gb-card-w, 200px);
    height: var(--gb-card-h, 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* centraliza conteúdo */
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border-radius: 14px;
    text-decoration: none;
    color: #111;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .gb-card-icone img[b-o2eetv4hto] {
        width: 32px;
        height: 32px;
    }

    .gb-card-icone span[b-o2eetv4hto] {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .gb-card-icone:hover[b-o2eetv4hto] {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    }
/* /Components/Shared/GB/GBCardInfo.razor.rz.scp.css */
.gb-cardpost[b-fp9iqplnre] {
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

    .gb-cardpost:hover[b-fp9iqplnre] {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

.gb-cardpost__wrap[b-fp9iqplnre] {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gb-cardpost__media[b-fp9iqplnre] {
    width: 100%;
    aspect-ratio: var(--gb-cardpost-aspect, 16 / 9);
    overflow: hidden;
    background: rgba(0,0,0,0.04);
}

.gb-cardpost__img[b-fp9iqplnre] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.gb-cardpost__content[b-fp9iqplnre] {
    padding: 1.25rem 1.3rem;
}

.gb-cardpost__kicker[b-fp9iqplnre] {
    display: inline-block;
    margin-bottom: .35rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
}

.gb-cardpost__title[b-fp9iqplnre] {
    margin: 0 0 .4rem 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: rgba(0,0,0,0.88);
}

.gb-cardpost__text[b-fp9iqplnre] {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}

.gb-cardpost__linklabel[b-fp9iqplnre] {
    display: inline-block;
    margin-top: .65rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gb-link, #2563eb);
}
/* /Components/Shared/GB/GBCardPost.razor.rz.scp.css */
.gb-cardpost[b-zflduvkxcx] {
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    background: #fff;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

    .gb-cardpost:hover[b-zflduvkxcx] {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

.gb-cardpost__wrap[b-zflduvkxcx] {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gb-cardpost__media[b-zflduvkxcx] {
    width: 100%;
    aspect-ratio: var(--gb-cardpost-aspect, 16 / 9);
    overflow: hidden;
    background: rgba(0,0,0,0.04);
}

.gb-cardpost__img[b-zflduvkxcx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.gb-cardpost__content[b-zflduvkxcx] {
    padding: 1.25rem 1.3rem;
}

.gb-cardpost__kicker[b-zflduvkxcx] {
    display: inline-block;
    margin-bottom: .35rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
}

.gb-cardpost__title[b-zflduvkxcx] {
    margin: 0 0 .4rem 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: rgba(0,0,0,0.88);
}

.gb-cardpost__text[b-zflduvkxcx] {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}

.gb-cardpost__linklabel[b-zflduvkxcx] {
    display: inline-block;
    margin-top: .65rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gb-link, #2563eb);
}
/* /Components/Shared/GB/GBCarouselPost.razor.rz.scp.css */
/* ===========================
   GB HERO (TimeOut-like)
   Arquivo completo
   =========================== */

.gb-hero[b-sbtn91yw7r] {
    --dur: 6500ms; 
    position: relative;
    background-color:var(--azul-escuro);
    padding-bottom: 86px; 
}

/* ===== Stage (imagem grande) ===== */
.gb-hero__stage[b-sbtn91yw7r] {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: clamp(340px, 52vw, 560px);
}

.gb-hero__slide[b-sbtn91yw7r] {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.gb-hero__slide.is-active[b-sbtn91yw7r] {
    opacity: 1;
    pointer-events: auto;
}

.gb-hero__img[b-sbtn91yw7r] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform var(--dur) linear;
}

.gb-hero__slide.is-active .gb-hero__img[b-sbtn91yw7r] {
    transform: scale(1.06);
}

.gb-hero__overlay[b-sbtn91yw7r] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.50) 38%,
        rgba(0,0,0,.18) 70%,
        rgba(0,0,0,0) 100%
    );
}

.gb-hero__content[b-sbtn91yw7r] {
    position: absolute;
    left: clamp(16px, 3vw, 36px);
    right: clamp(16px, 3vw, 36px);
    bottom: clamp(18px, 3vw, 34px);
    max-width: 900px;
    color: #fff;
}

.gb-hero__kicker[b-sbtn91yw7r] {
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .02em;
    opacity: .92;
    margin-bottom: .45rem;
}

.gb-hero__title[b-sbtn91yw7r] {
    margin: 0;
    font-size: clamp(1.6rem, 4.6vw, 3.1rem);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.gb-hero__cta[b-sbtn91yw7r] {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.05rem;
    border-radius: 999px;
    background: #e11d2e;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.gb-hero__cta:focus-visible[b-sbtn91yw7r] {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* ===== Rail inferior (tabs) ===== */
.gb-hero__rail[b-sbtn91yw7r] {
    position: absolute;
    left: 0;
    right: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    background: var(--azul-escuro);
    padding: .9rem;
}

.gb-hero__tab[b-sbtn91yw7r] {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    text-align: left;
    padding: .55rem .25rem;
    color: rgba(255,255,255,.78);
}

.gb-hero__tab.is-active[b-sbtn91yw7r] {
    color: #fff;
}

.gb-hero__tabText[b-sbtn91yw7r] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    font-size: .95rem;
    line-height: 1.22;
    font-weight: 750;
}

/* ===== Progress bar (trilho + preenchimento laranja) ===== */
.gb-hero__progress[b-sbtn91yw7r] {
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;

    background: rgba(255,255,255,.22);
    overflow: hidden;
}

.gb-hero__progress-bar[b-sbtn91yw7r] {
    position: absolute;
    inset: 0;
    display: block;

    background: #f97316; /* laranja */
    transform: scaleX(0);
    transform-origin: left;
}

.gb-hero__tab.is-active .gb-hero__progress-bar[b-sbtn91yw7r] {
    animation: gb-hero-progress-b-sbtn91yw7r var(--dur) linear forwards;
}

@keyframes gb-hero-progress-b-sbtn91yw7r {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* ===== Focus acessível ===== */
.gb-hero__tab:focus-visible[b-sbtn91yw7r] {
    outline: 2px solid rgba(255,255,255,.9);
    outline-offset: 4px;
    border-radius: 12px;
}

/* ===== Responsivo ===== */
@media (max-width: 980px) {
    .gb-hero__rail[b-sbtn91yw7r] {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    .gb-hero__img[b-sbtn91yw7r] {
        transition: none;
        transform: none;
    }

    .gb-hero__tab.is-active .gb-hero__progress-bar[b-sbtn91yw7r] {
        animation: none;
        transform: scaleX(1);
    }
}














/* /Components/Shared/GB/GBFaq.razor.rz.scp.css */
.gb-faq__header[b-qsumykqr1p] {
    max-width: 760px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.gb-faq__title[b-qsumykqr1p] {
    margin: 0 0 .5rem 0;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.92);
}

.gb-faq__subtitle[b-qsumykqr1p] {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.72);
}

/* Lista */
.gb-faq__list[b-qsumykqr1p] {
    max-width: 820px;
}

/* Item */
.gb-faq__item[b-qsumykqr1p] {
    border-bottom: 1px solid rgba(0,0,0,0.10);
    padding-block: .85rem;
}

    .gb-faq__item summary[b-qsumykqr1p] {
        cursor: pointer;
        font-weight: 650;
        font-size: 1rem;
        color: rgba(0,0,0,0.88);
        list-style: none;
    }

        .gb-faq__item summary[b-qsumykqr1p]::-webkit-details-marker {
            display: none;
        }

        .gb-faq__item summary[b-qsumykqr1p]::after {
            content: "+";
            float: right;
            font-size: 1.2rem;
            line-height: 1;
            color: rgba(0,0,0,0.55);
            transition: transform 120ms ease;
        }

    .gb-faq__item[open] summary[b-qsumykqr1p]::after {
        content: "–";
    }

/* Conteúdo */
.gb-faq__content[b-qsumykqr1p] {
    margin-top: .6rem;
}

    .gb-faq__content p[b-qsumykqr1p] {
        margin: 0;
        font-size: .95rem;
        line-height: 1.65;
        color: rgba(0,0,0,0.72);
    }

/* Acessibilidade */
.gb-faq__item summary:focus-visible[b-qsumykqr1p] {
    outline: 3px solid rgba(0,0,0,0.25);
    outline-offset: 2px;
}

/* sr-only local (para h2 invisível quando não há título) */
.sr-only[b-qsumykqr1p] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
/* /Components/Shared/GB/GBGaleriaFotos.razor.rz.scp.css */
/* ===== Layout igual ao primeiro (hero + thumbs + ver mais) ===== */
.gb-gallery[b-25n28ombf9] {
    display: block;
}

.gb-gallery__grid[b-25n28ombf9] {
    --gap: 10px;
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr;
}

.gb-gallery__item[b-25n28ombf9] {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: #0b0b0b;
    transform: translateZ(0);
    outline: none;
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
    padding: 0;
    border: 0;
    width: 100%;
    text-align: inherit;
    cursor: pointer;
}

    .gb-gallery__item:focus-visible[b-25n28ombf9] {
        outline: 3px solid rgba(0, 0, 0, 0.30);
        outline-offset: 3px;
    }

.gb-gallery__img[b-25n28ombf9] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 180ms ease;
    aspect-ratio: 16/10;
}

.gb-gallery__item:hover .gb-gallery__img[b-25n28ombf9] {
    transform: scale(1.04);
}

.gb-gallery__item.is-hero .gb-gallery__img[b-25n28ombf9] {
    aspect-ratio: 16/9;
}

.gb-gallery__moreWrap[b-25n28ombf9] {
    display: grid;
}

.gb-gallery__moreBtn[b-25n28ombf9] {
    min-height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.10);
    color: rgba(0,0,0,0.88);
    font-weight: 600;
    transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

    .gb-gallery__moreBtn:hover[b-25n28ombf9] {
        transform: translateY(-1px);
        background: rgba(0,0,0,0.06);
        border-color: rgba(0,0,0,0.16);
    }

    .gb-gallery__moreBtn:focus-visible[b-25n28ombf9] {
        outline: 3px solid rgba(0, 0, 0, 0.30);
        outline-offset: 3px;
    }

.gb-gallery__moreCount[b-25n28ombf9] {
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.10);
}

/* Estado vazio */
.gb-gallery__empty[b-25n28ombf9] {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(0,0,0,0.02);
}

.gb-gallery__emptyBox[b-25n28ombf9] {
    height: 160px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02), rgba(0,0,0,0.05));
}

.gb-gallery__emptyText[b-25n28ombf9] {
    margin: 0;
    color: rgba(0,0,0,0.70);
}

/* Responsivo (igual ao primeiro) */
@media (min-width: 640px) {
    .gb-gallery__grid[b-25n28ombf9] {
        grid-template-columns: repeat(2, 1fr);
    }

    .gb-gallery__item.is-hero[b-25n28ombf9] {
        grid-column: 1 / -1;
    }
}

@media (min-width: 960px) {
    .gb-gallery__grid[b-25n28ombf9] {
        grid-template-columns: repeat(var(--gb-gallery-cols), 1fr);
    }

    .gb-gallery__item.is-hero[b-25n28ombf9] {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 360px;
    }

    .gb-gallery__item:not(.is-hero) .gb-gallery__img[b-25n28ombf9] {
        aspect-ratio: 4/3;
    }

    .gb-gallery__moreWrap[b-25n28ombf9] {
        min-height: 100%;
    }

    .gb-gallery__moreBtn[b-25n28ombf9] {
        min-height: 100%;
    }
}

/* ===== Lightbox (popup) via estado Blazor ===== */
.gb-lightbox[b-25n28ombf9] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
}

.gb-lightbox__backdrop[b-25n28ombf9] {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
    backdrop-filter: blur(6px);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.gb-lightbox__panel[b-25n28ombf9] {
    position: relative;
    width: min(1100px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    border-radius: 18px;
    background: rgba(10,10,10,0.92);
    box-shadow: 0 24px 70px rgba(0,0,0,0.50);
    overflow: hidden;
    display: grid;
    align-content: center;
}

.gb-lightbox__figure[b-25n28ombf9] {
    margin: 0;
    display: grid;
    gap: 10px;
    padding: 16px 16px 14px 16px;
}

.gb-lightbox__img[b-25n28ombf9] {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    display: block;
    border-radius: 12px;
    background: #000;
}

.gb-lightbox__caption[b-25n28ombf9] {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.35;
}

/* Fechar */
.gb-lightbox__close[b-25n28ombf9] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

    .gb-lightbox__close:hover[b-25n28ombf9] {
        background: rgba(255,255,255,0.14);
    }

/* Navegação */
.gb-lightbox__nav[b-25n28ombf9] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

    .gb-lightbox__nav:hover[b-25n28ombf9] {
        background: rgba(255,255,255,0.14);
    }

.gb-lightbox__nav--prev[b-25n28ombf9] {
    left: 10px;
}

.gb-lightbox__nav--next[b-25n28ombf9] {
    right: 10px;
}

.gb-lightbox__close:focus-visible[b-25n28ombf9],
.gb-lightbox__nav:focus-visible[b-25n28ombf9],
.gb-lightbox__backdrop:focus-visible[b-25n28ombf9] {
    outline: 3px solid rgba(255,255,255,0.35);
    outline-offset: 3px;
}
/* /Components/Shared/GB/GBGrid.razor.rz.scp.css */
.gb-grid[b-445txg64dx] {
    display: grid;
    gap: var(--gb-gap, 1rem);
    column-gap: var(--gb-col-gap, var(--gb-gap, 1rem));
    row-gap: var(--gb-row-gap, var(--gb-gap, 1rem));
    grid-auto-flow: var(--gb-flow, row);
    align-items: var(--gb-align, stretch);
    justify-items: var(--gb-justify, stretch);
    min-width: 0;
}

    /* ESSENCIAL: garante que cada filho ocupa a célula do grid
   (evita cards com width:fit-content, inline, etc.) */
    .gb-grid > *[b-445txg64dx] {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

/* ===== FIXED: colunas por linha ===== */
.gb-grid--fixed[b-445txg64dx] {
    grid-template-columns: repeat(var(--gb-cols, 1), minmax(0, 1fr));
}

/* Breakpoints fixos (confiáveis) */





@media (max-width: 1280px) {
    .gb-grid--fixed[b-445txg64dx] {
        grid-template-columns: repeat(var(--gb-cols-xl, 1), minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .gb-grid--fixed[b-445txg64dx] {
        grid-template-columns: repeat(var(--gb-cols-lg, 1), minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gb-grid--fixed[b-445txg64dx] {
        grid-template-columns: repeat(var(--gb-cols-md, 1), minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gb-grid--fixed[b-445txg64dx] {
        grid-template-columns: repeat(var(--gb-cols-sm, 1), minmax(0, 1fr));
    }
}
/* ===== AUTO: auto-fit por MinItemWidth ===== */
.gb-grid--auto[b-445txg64dx] {
    grid-template-columns: repeat( auto-fit, minmax(var(--gb-min, 240px), max-content) );
    justify-content: center;
}
/* /Components/Shared/GB/GBHeroBairro.razor.rz.scp.css */
.gb-hero-bairro[b-mbponlceq7] {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    padding: 0;
    margin: 0;
}

    /* Imagem */
    .gb-hero-bairro img[b-mbponlceq7] {
        padding: 0;
        margin: 0;
        display: block;
        width: 100%;
        height: clamp(220px, 32vw, 600px);
        object-fit: cover;
    }

/* Mobile first */
@media (max-width: 768px) {
    .gb-hero-bairro img[b-mbponlceq7] {
        height: 220px;
    }
}
/* /Components/Shared/GB/GBHeroSlider.razor.rz.scp.css */
.gb-hero[b-finwlci23n] {
    --dur: 6500ms;
    position: relative;
    background-color: var(--azul-escuro);
    padding-bottom: 86px;
}

/* ===== Stage (imagem grande) ===== */
.gb-hero__stage[b-finwlci23n] {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: clamp(340px, 52vw, 560px);
}
.gb-hero__slide[b-finwlci23n] {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

    .gb-hero__slide.is-active[b-finwlci23n] {
        opacity: 1;
        pointer-events: auto;
    }

.gb-hero__img[b-finwlci23n] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

/* animação de zoom sincronizada com --dur */
.gb-hero__slide.is-active .gb-hero__img[b-finwlci23n] {
    animation: gb-hero-zoom-b-finwlci23n var(--dur) linear forwards;
}

@keyframes gb-hero-zoom-b-finwlci23n {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.gb-hero__overlay[b-finwlci23n] {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.50) 38%, rgba(0,0,0,.18) 70%, rgba(0,0,0,0) 100% );
}
.gb-hero__content[b-finwlci23n] {
    position: absolute;
    left: clamp(16px, 3vw, 36px);
    right: clamp(16px, 3vw, 36px);
    bottom: clamp(18px, 3vw, 34px);
    max-width: 900px;
    color: #fff;
}

.gb-hero__kicker[b-finwlci23n] {
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .02em;
    opacity: .92;
    margin-bottom: .45rem;
}

.gb-hero__title[b-finwlci23n] {
    margin: 0;
    font-size: clamp(1.6rem, 4.6vw, 3.1rem);
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.gb-hero__cta[b-finwlci23n] {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.05rem;
    border-radius: 999px;
    background: #e11d2e;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}
    .gb-hero__cta:focus-visible[b-finwlci23n] {
        outline: 2px solid #fff;
        outline-offset: 3px;
    }

/* ===== Rail inferior (tabs) ===== */
.gb-hero__rail[b-finwlci23n] {
    position: absolute;
    left: 0;
    right: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    background: var(--azul-escuro);
    padding: .9rem;
}

.gb-hero__tab[b-finwlci23n] {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    text-align: left;
    padding: .55rem .25rem;
    color: rgba(255,255,255,.78);
}

    .gb-hero__tab.is-active[b-finwlci23n] {
        color: #fff;
    }

.gb-hero__tabText[b-finwlci23n] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .95rem;
    line-height: 1.22;
    font-weight: 750;
}

/* ===== Progress bar (trilho + preenchimento laranja) ===== */
.gb-hero__progress[b-finwlci23n] {
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    overflow: hidden;
}

.gb-hero__progress-bar[b-finwlci23n] {
    position: absolute;
    inset: 0;
    display: block;
    background: #f97316; /* laranja */
    transform: scaleX(0);
    transform-origin: left;
}

.gb-hero__tab.is-active .gb-hero__progress-bar[b-finwlci23n] {
    animation: gb-hero-progress-b-finwlci23n var(--dur) linear forwards;
}

@keyframes gb-hero-progress-b-finwlci23n {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ===== Focus acessível ===== */
.gb-hero__tab:focus-visible[b-finwlci23n] {
    outline: 2px solid rgba(255,255,255,.9);
    outline-offset: 4px;
    border-radius: 12px;
}

/* ===== Responsivo ===== */
@media (max-width: 980px) {
    .gb-hero__rail[b-finwlci23n] {
        grid-template-columns: 1fr 1fr;
    }
}

.gb-hero__desc[b-finwlci23n] {
    margin: .7rem 0 0 0;
    max-width: 72ch;
    font-size: clamp(.98rem, 1.2vw, 1.1rem); 
    line-height: 1.45;
    color: rgba(255,255,255,.88);
    text-shadow: 0 10px 28px rgba(0,0,0,.45);
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 2 ou 3 fica ótimo no hero */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gb-hero__slide .gb-hero__desc[b-finwlci23n] {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 240ms ease, transform 240ms ease;
}

.gb-hero__slide.is-active .gb-hero__desc[b-finwlci23n] {
    opacity: 1;
    transform: translateY(0);
}
.gb-hero.is-paused .gb-hero__progress-bar[b-finwlci23n] {
    animation-play-state: paused;
}

/* pausa o zoom também */
.gb-hero.is-paused .gb-hero__img[b-finwlci23n] {
    animation-play-state: paused;
}

.gb-hero.is-paused .gb-hero__progress-bar[b-finwlci23n] {
    animation-play-state: paused;
}

.gb-hero.is-paused .gb-hero__img[b-finwlci23n] {
    animation-play-state: paused;
}





.gb-hero[b-finwlci23n] {
    /* o padding-bottom grande era para compensar o rail absoluto.
       agora que o rail vai pro fluxo, isso só cria espaço extra */
    padding-bottom: 0;
}

/* rail deixa de ser absoluto e passa a ocupar espaço real no layout */
.gb-hero__rail[b-finwlci23n] {
    position: static; /* ou relative; static é o mais “puro” */
    left: auto;
    right: auto;
    inset: auto;
    inset-inline: auto;
    margin: 0; /* REMOVE qualquer “puxada” pra cima */
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    background: var(--azul-escuro);
    padding: .9rem;
    width: 100%;
    max-width: 100%;
    overflow-x: clip; /* mantém seu fix de horizontal */
}

/* se você quiser um respiro entre stage e rail, use margem POSITIVA */
.gb-hero__stage + .gb-hero__rail[b-finwlci23n] {
    margin-top: 0;
}

/* Responsivo */
@media (max-width: 980px) {
    .gb-hero__rail[b-finwlci23n] {
        grid-template-columns: 1fr 1fr;
    }
}
/* /Components/Shared/GB/GBHr.razor.rz.scp.css */
/* Component: gb-separator */
.gb-separator[b-fzihqp7ngs] {
    border: 0;
    height: var(--gb-sep-thickness, 1px);
    background-color: var(--gb-sep-color, rgba(0, 0, 0, 0.12));
    opacity: var(--gb-sep-opacity, 1);
    margin-block: var(--gb-sep-margin, 1.25rem);
    margin-inline: var(--gb-sep-inset, 0);
    border-radius: var(--gb-sep-radius, 999px);
}
/* /Components/Shared/GB/GBIcone.razor.rz.scp.css */
.gb-icon[b-f638qiji9b] {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
}
/* /Components/Shared/GB/GBImagem.razor.rz.scp.css */
.gb-img[b-6a55hkj617] {
    width: 100%;
    margin: 0;
    display: grid;
    gap: .5rem;
    position: relative;
    border-radius: 12px;
    overflow: clip;
    background: #f7f8fa;
    box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 12px rgba(0,0,0,.06);
    --gb-img-ar: auto;
    --gb-img-fit: cover;
    --gb-zoom-scale: 1.02;
    --gb-zoom-dur: 900ms;
    --gb-zoom-ease: cubic-bezier(.16, 1, .3, 1);
    --gb-pro-highlight: rgba(255,255,255,.10);
    --gb-pro-vignette: rgba(0,0,0,.06);
}

.gb-img__img[b-6a55hkj617] {
    display: block;
    width: 100%;
    height: auto;
    object-fit: var(--gb-img-fit);
    aspect-ratio: var(--gb-img-ar);
    transform-origin: 50% 50%;
    transform: translateZ(0) scale(1);
    opacity: .98;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: transform var(--gb-zoom-dur) var(--gb-zoom-ease), opacity var(--gb-zoom-dur) var(--gb-zoom-ease) !important;
}

.gb-img[b-6a55hkj617]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(120% 70% at 50% 10%, var(--gb-pro-highlight) 0%, transparent 60%), radial-gradient(120% 100% at 50% 120%, var(--gb-pro-vignette) 0%, transparent 60%);
    transition: opacity var(--gb-zoom-dur) var(--gb-zoom-ease);
}

.gb-img:hover .gb-img__img[b-6a55hkj617],
.gb-img:focus-within .gb-img__img[b-6a55hkj617] {
    transform: translateZ(0) scale(var(--gb-zoom-scale));
    opacity: 1;
}

.gb-img:hover[b-6a55hkj617]::after,
.gb-img:focus-within[b-6a55hkj617]::after {
    opacity: 1;
}

.gb-img:hover[b-6a55hkj617],
.gb-img:focus-within[b-6a55hkj617] {
    box-shadow: 0 3px 8px rgba(0,0,0,.08), 0 14px 28px rgba(0,0,0,.12);
    transition: box-shadow 260ms ease;
}

.gb-img__cap[b-6a55hkj617] {
    font-size: 16px;
    line-height: 1.4;
    color: var(--gb-muted, #62666d);
    padding: .5rem .875rem;
    background: #fbfcfd;
}

@media (prefers-reduced-motion: reduce) {
    .gb-img__img[b-6a55hkj617],
    .gb-img[b-6a55hkj617]::after,
    .gb-img:hover[b-6a55hkj617],
    .gb-img:focus-within[b-6a55hkj617] {
        transition: none !important;
    }
}

@media (max-width: 640px) {
    .gb-img__cap[b-6a55hkj617] {
        font-size: 14px;
    }
}

/* NOVO: wrapper do NavLink (link opcional) */
.gb-img-link[b-6a55hkj617],
.gb-img-link:link[b-6a55hkj617],
.gb-img-link:visited[b-6a55hkj617],
.gb-img-link:hover[b-6a55hkj617],
.gb-img-link:active[b-6a55hkj617],
.gb-img-link.active[b-6a55hkj617] {
    display: block;
    color: inherit;
    text-decoration: none !important;
    text-decoration-line: none !important;
}

    /* Garante que a legenda não herde underline (inclusive quando NavLink fica "active") */
    .gb-img-link .gb-img__cap[b-6a55hkj617] {
        text-decoration: none !important;
        text-decoration-line: none !important;
    }

    .gb-img-link[b-6a55hkj617],
    .gb-img-link:link[b-6a55hkj617],
    .gb-img-link:visited[b-6a55hkj617],
    .gb-img-link:hover[b-6a55hkj617],
    .gb-img-link:active[b-6a55hkj617],
    .gb-img-link.active[b-6a55hkj617] {
        display: block;
        color: inherit;
        text-decoration: none !important;
        text-decoration-line: none !important;
    }

        .gb-img-link .gb-img__cap[b-6a55hkj617] {
            text-decoration: none !important;
            text-decoration-line: none !important;
        }
/* /Components/Shared/GB/GBInfo.razor.rz.scp.css */
.gb-mini[b-a9z3knyptr] {
    border-radius: 16px;
    padding: .9rem 1rem;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.70);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
}

.gb-mini__k[b-a9z3knyptr] {
    margin: 0 0 .25rem 0;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.58);
}

.gb-mini__v[b-a9z3knyptr] {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(0,0,0,0.82);
}
/* /Components/Shared/GB/GBLink.razor.rz.scp.css */
.gb-link[b-7lztlq4eg2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

    /* foco acessível */
    .gb-link:focus-visible[b-7lztlq4eg2] {
        outline: 3px solid rgba(59,130,246,.35);
        outline-offset: 3px;
    }

/* ----- Link simples (default) ----- */
.gb-link--texto[b-7lztlq4eg2] {
    text-decoration: underline;
    text-underline-offset: .18em;
}

/* ----- Botão ----- */
.gb-link--botao[b-7lztlq4eg2] {
    padding: .65rem 1rem;
    border: 1px solid transparent;
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

    .gb-link--botao:hover[b-7lztlq4eg2] {
        transform: translateY(-1px);
        filter: brightness(.97);
    }

    .gb-link--botao:active[b-7lztlq4eg2] {
        transform: translateY(0);
        filter: brightness(.94);
        box-shadow: 0 6px 14px rgba(0,0,0,.12);
    }

/* ----- Tamanhos ----- */
.gb-link--tam-pequeno[b-7lztlq4eg2] {
    font-size: .92rem;
    padding: .45rem .85rem;
}

.gb-link--tam-medio[b-7lztlq4eg2] {
    font-size: 1rem;
}

.gb-link--tam-grande[b-7lztlq4eg2] {
    font-size: 1.05rem;
    padding: .85rem 1.15rem;
}
/* /Components/Shared/GB/GBLogo.razor.rz.scp.css */
.gb-logo[b-hkymvuwsa6] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
}

.gb-logo__icon[b-hkymvuwsa6] {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
}

.gb-logo__text[b-hkymvuwsa6] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gb-logo__line1[b-hkymvuwsa6] {
    color: var(--azul);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.gb-logo__de[b-hkymvuwsa6] {
    font-weight: 600;
    font-size: 0.75em;
    margin-left: 6px;
}

.gb-logo__line2[b-hkymvuwsa6] {
    color: var(--laranja);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* <= 900px */
@media (max-width: 900px) {
    .gb-logo[b-hkymvuwsa6] {
        gap: 6px;
    }

    .gb-logo__icon[b-hkymvuwsa6] {
        width: 28px;
        height: 28px;
    }

    .gb-logo__line1[b-hkymvuwsa6] {
        font-size: 16px;
    }

    .gb-logo__line2[b-hkymvuwsa6] {
        font-size: 18px;
    }
}

/* <= 520px */
@media (max-width: 520px) {
    .gb-logo[b-hkymvuwsa6] {
        gap: 6px;
    }

    .gb-logo__icon[b-hkymvuwsa6] {
        width: 24px;
        height: 24px;
    }

    .gb-logo__line1[b-hkymvuwsa6] {
        font-size: 14px;
    }

    .gb-logo__line2[b-hkymvuwsa6] {
        font-size: 16px;
    }
}
/* /Components/Shared/GB/GBMapa.razor.rz.scp.css */
.mapa-embed[b-y8vhq4237i] {
    position: relative;
    width: 100%;
    height: clamp(360px, 55vh, 520px);
}

    .mapa-embed iframe[b-y8vhq4237i] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
/* /Components/Shared/GB/GBPostConteudo.razor.rz.scp.css */
body[b-0wybl0peot] {
}
/* /Components/Shared/GB/GBPostGridDestaque.razor.rz.scp.css */
.gb-postgrid[b-a8p7hg8nso] {
    display: grid;
    gap: 10px;
    width: 100%;
    color: #fff;
}

/* ===== Card base ===== */
.gb-postgrid__card[b-a8p7hg8nso] {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    background: transparent;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    outline: none;
}

    .gb-postgrid__card:focus-visible[b-a8p7hg8nso] {
        box-shadow: 0 0 0 3px rgba(255,255,255,0.35), 0 10px 30px rgba(0,0,0,0.35);
    }

.gb-postgrid__card--main[b-a8p7hg8nso] {
    min-height: 220px;
}

.gb-postgrid__card--side[b-a8p7hg8nso] {
    min-height: 110px;
}

/* ===== Fundo e imagem (garante ocupar 100%) ===== */
.gb-postgrid__bg[b-a8p7hg8nso] {
    position: absolute;
    inset: 0;
    display: block;
}

.gb-postgrid__img[b-a8p7hg8nso] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ocupa tudo sem distorcer */
    object-position: center;
    display: block;
    transform: scale(1.01);
    filter: brightness(1.08) contrast(1.05);
}

.gb-postgrid__overlay[b-a8p7hg8nso] {
    position: absolute;
    inset: 0;
}

.gb-postgrid__overlay--main[b-a8p7hg8nso] {
    background: linear-gradient( 180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0.55) 100% );
}

.gb-postgrid__overlay--side[b-a8p7hg8nso] {
    background: linear-gradient( 180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.26) 55%, rgba(0,0,0,0.50) 100% );
}

/* ===== Conteúdo (ancora embaixo) ===== */
.gb-postgrid__content[b-a8p7hg8nso] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 12px 12px 12px;
    display: grid;
    gap: 6px;
    align-content: end;
    text-shadow: 0 2px 6px rgba(0,0,0,0.65);
}

.gb-postgrid__content--main[b-a8p7hg8nso] {
    padding: 16px 16px 14px;
    gap: 8px;
}

.gb-postgrid__title[b-a8p7hg8nso] {
    margin: 0;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gb-postgrid__title--side[b-a8p7hg8nso] {
    font-size: 14px;
    font-weight: 700;
}

/* título principal mantém escala maior */
.gb-postgrid__content--main .gb-postgrid__title[b-a8p7hg8nso] {
    font-size: clamp(18px, 2.6vw, 26px);
}

/* ===== Descrição principal (clamp por linhas) ===== */
.gb-postgrid__desc--main[b-a8p7hg8nso] {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Descrição lateral (RETICÊNCIAS) =====
   Aqui é exatamente o que você pediu:
   controla comprimento e coloca "..." no final sem backend.
*/
.gb-postgrid__desc--side[b-a8p7hg8nso] {
    font-size: 12.5px;
    line-height: 1.35;
    color: rgba(255,255,255,0.90);
    /* reticências em 2 linhas (padrão mais bonito e estável) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* (opcional) se você quiser 1 linha com "..." ao invés de 2:
.gb-postgrid__desc--side {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/

/* ===== Link Abrir ===== */
.gb-postgrid__open[b-a8p7hg8nso] {
    display: inline-flex;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== Layout coluna direita ===== */
.gb-postgrid__side[b-a8p7hg8nso] {
    display: grid;
    gap: 10px;
}

.gb-postgrid__item[b-a8p7hg8nso] {
    position: relative;
}

/* ===== Interações ===== */
.gb-postgrid__card:hover .gb-postgrid__img[b-a8p7hg8nso] {
    transform: scale(1.06);
    filter: brightness(1.15) contrast(1.08);
    transition: transform 240ms ease, filter 240ms ease;
}

.gb-postgrid__card:active[b-a8p7hg8nso] {
    transform: translateY(1px);
}

/* ===== Desktop ===== */
@media (min-width: 900px) {
    .gb-postgrid[b-a8p7hg8nso] {
        grid-template-columns: 2fr 1fr;
        gap: 10px;
        align-items: stretch;
    }

    .gb-postgrid__card--main[b-a8p7hg8nso] {
        min-height: 360px;
    }

    .gb-postgrid__side[b-a8p7hg8nso] {
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
    }

    .gb-postgrid__card--side[b-a8p7hg8nso] {
        min-height: 0;
        height: 100%;
    }
}

/* ===== Acessibilidade ===== */
@media (prefers-reduced-motion: reduce) {
    .gb-postgrid__card:hover .gb-postgrid__img[b-a8p7hg8nso] {
        transform: none;
        filter: none;
        transition: none;
    }

    .gb-postgrid__card:active[b-a8p7hg8nso] {
        transform: none;
    }
}
/* /Components/Shared/GB/GBPostLayout.razor.rz.scp.css */
/* ========== GB Post Layout (centro fixo + laterais no espaço restante) ========== */

.gb-postlayout[b-8qicwx1ccg] {
    --gb-sticky-top: 96px;
    --gb-sticky-gap: 16px;
    --gb-aside-w: 320px; 
    --gb-main-max: 1200px;
    --gb-gap: clamp(16px, 2vw, 28px);

    width: 100%;
    padding-inline: clamp(16px, 3vw, 28px);

    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--gb-gap);
    align-items: start;
}

.gb-postlayout__aside[b-8qicwx1ccg] {
    display: none;
    min-width: 0;

    /* não deixa a lateral esticar no 1fr */
    max-width: var(--gb-aside-w);
}

.gb-postlayout__main[b-8qicwx1ccg] {
    min-width: 0;
}

/* aqui o centro ganha “largura boa” de leitura */
.gb-postlayout__mainInner[b-8qicwx1ccg] {
    max-width: 100%;
    --gb-post-maxw: 1920px;
    --gb-post-pad: clamp(8px, 1.5vw, 24px);
    --gb-post-radius: 18px;
    /* Cores via CSS variables (opcional). Se você já tem tema global, pode ignorar. */
    --gb-post-text: inherit;
    --gb-post-muted: rgba(0, 0, 0, 0.68);
    --gb-post-border: rgba(0, 0, 0, 0.10);
    --gb-post-surface: rgba(255, 255, 255, 0.92);
    --gb-post-surface-2: rgba(255, 255, 255, 0.70);
    max-width: var(--gb-post-maxw);
    margin: 0 auto;
    padding: var(--gb-post-pad);
    border: 1px solid var(--gb-post-border);
    border-radius: var(--gb-post-radius);
    background: var(--gb-post-surface);
    color: var(--gb-post-text);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Sticky */
.gb-postlayout__sticky[b-8qicwx1ccg] {
    position: sticky;
    top: var(--gb-sticky-top);

    /* se a lateral for maior que a viewport, rola dentro */
    max-height: calc(100vh - var(--gb-sticky-top) - var(--gb-sticky-gap));
    overflow: auto;
    overscroll-behavior: contain;
}

/* ====== >= 1024px: mantém o centro fixo e usa o resto para laterais/margens ====== */
@media (min-width: 1024px) {
    .gb-postlayout--has-left[b-8qicwx1ccg],
    .gb-postlayout--has-right[b-8qicwx1ccg] {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, var(--gb-main-max))
            minmax(0, 1fr);
    }

    .gb-postlayout--has-left .gb-postlayout__aside--left[b-8qicwx1ccg] {
        display: block;
        justify-self: end;   /* encosta mais perto do centro */
    }

    .gb-postlayout--has-right .gb-postlayout__aside--right[b-8qicwx1ccg] {
        display: block;
        justify-self: start; /* encosta mais perto do centro */
    }

    /* O centro agora é a coluna do meio fixa */
    .gb-postlayout__mainInner[b-8qicwx1ccg] {
        max-width: var(--gb-main-max);
        margin-inline: auto;
    }
}

/* ====== >= 1280px: permite mostrar as duas laterais (se existirem) ====== */
@media (min-width: 1280px) {
    /* nada extra; a regra de 1024px já suporta as duas */
}
/* ===== Anti scroll horizontal (mobile) + contenção de conteúdo do post ===== */

.gb-postlayout[b-8qicwx1ccg],
.gb-postlayout *[b-8qicwx1ccg] {
    box-sizing: border-box;
}

/* No mobile (onde as laterais já somem), podemos cortar overflow sem afetar sticky */
@media (max-width: 1023.98px) {
    .gb-postlayout[b-8qicwx1ccg] {
        overflow-x: clip;
    }

    /* Fallback para navegadores que não suportam clip */
    @supports not (overflow: clip) {
        .gb-postlayout[b-8qicwx1ccg] {
            overflow-x: hidden;
        }
    }
}

/* Evita grid/children “forçarem” largura */
.gb-postlayout__main[b-8qicwx1ccg],
.gb-postlayout__mainInner[b-8qicwx1ccg] {
    min-width: 0;
}

/* Mídias nunca podem estourar a coluna */
.gb-postlayout :where(img, video, iframe, svg, canvas)[b-8qicwx1ccg] {
    max-width: 100%;
    height: auto;
}

/* Código e tabelas são os maiores vilões: rolam por dentro, não na página */
.gb-postlayout :where(pre)[b-8qicwx1ccg] {
    max-width: 100%;
    overflow: auto;
}

.gb-postlayout :where(table)[b-8qicwx1ccg] {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Strings longas não quebráveis */
.gb-postlayout :where(p, li, h1, h2, h3, h4, h5, h6, a)[b-8qicwx1ccg] {
    overflow-wrap: anywhere;
    word-break: break-word;
}
/* ===== Sticky das laterais (desktop) ===== */
@media (min-width: 1024px) {
    /* garante que no desktop nada do layout mate o sticky */
    .gb-postlayout[b-8qicwx1ccg] {
        overflow: visible;
    }

    .gb-postlayout__aside[b-8qicwx1ccg] {
        position: sticky;
        top: var(--gb-sticky-top);
        align-self: start; /* ESSENCIAL: evita stretch do grid quebrar sticky */
    }

    /* o wrapper interno fica só com o "scroll interno" quando for grande */
    .gb-postlayout__sticky[b-8qicwx1ccg] {
        position: static;
        max-height: calc(100vh - var(--gb-sticky-top) - var(--gb-sticky-gap));
        overflow: auto;
        overscroll-behavior: contain;
    }
}
/* /Components/Shared/GB/GBPostMeta.razor.rz.scp.css */
.gb-tagger[b-ih9dkx2q3w] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .75rem;
    border-radius: 999px;
    font-size: .9rem;
    line-height: 1;
    letter-spacing: .01em;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.7);
    color: rgba(0,0,0,0.72);
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(0);
    box-shadow: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
    pointer-events: auto;
    margin: 5px;
}

    .gb-tagger:hover[b-ih9dkx2q3w],
    .gb-tagger:focus-visible[b-ih9dkx2q3w] {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
        border-color: rgba(0, 0, 0, 0.14);
        background: rgba(255, 255, 255, 1);
    }

a.gb-tagger[b-ih9dkx2q3w] {
    cursor: pointer;
}

.gb-tagger:focus-visible[b-ih9dkx2q3w] {
    outline: 2px solid rgba(0, 0, 0, 0.45);
    outline-offset: 3px;
}

.gb-tagger__meta[b-ih9dkx2q3w] {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--gb-post-border);
    background: var(--gb-post-surface-2);
    border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
    .gb-tagger[b-ih9dkx2q3w] {
        transition: none;
    }

        .gb-tagger:hover[b-ih9dkx2q3w],
        .gb-tagger:focus-visible[b-ih9dkx2q3w] {
            transform: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
        }
}
/* /Components/Shared/GB/GBSecao.razor.rz.scp.css */
/* /Components/Shared/GB/GBSecaoPost.razor.rz.scp.css */
.gb-secaopost[b-t0t6n5ocdw] {
    width: 100%;
}

.gb-secaopost__col--main p[b-t0t6n5ocdw] {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.7;
}

.gb-secaopost__single[b-t0t6n5ocdw] {
    width: 100%;
}

.gb-secaopost__grid[b-t0t6n5ocdw] {
    display: grid;
    grid-template-columns: var(--gb-main, 2fr) var(--gb-side, 1fr);
    gap: var(--gb-gap, 32px);
    align-items: start;
}

.gb-secaopost__col[b-t0t6n5ocdw] {
    min-width: 0;
}
.gb-secaopost__grid[b-t0t6n5ocdw] {
    display: grid;
    gap: var(--gb-gap, 32px);
    align-items: start;
    /* padrão: main primeiro, side depois */
    grid-template-columns: var(--gb-main, 2fr) var(--gb-side, 1fr);
}

/* quando for textright: side primeiro, main depois */
.gb-secaopost--textright .gb-secaopost__grid[b-t0t6n5ocdw] {
    grid-template-columns: var(--gb-side, 1fr) var(--gb-main, 2fr);
}

.gb-secaopost__col[b-t0t6n5ocdw] {
    min-width: 0;
}


@media (max-width: 980px) {
    .gb-secaopost--textleft .gb-secaopost__grid[b-t0t6n5ocdw],
    .gb-secaopost--textright .gb-secaopost__grid[b-t0t6n5ocdw] {
        grid-template-columns: 1fr;
    }

    .gb-secaopost--textleft .gb-secaopost__col--side[b-t0t6n5ocdw],
    .gb-secaopost--textright .gb-secaopost__col--side[b-t0t6n5ocdw] {
        order: 0;
    }

    .gb-secaopost--textleft .gb-secaopost__col--main[b-t0t6n5ocdw],
    .gb-secaopost--textright .gb-secaopost__col--main[b-t0t6n5ocdw] {
        order: 1;
    }
}
/* /Components/Shared/GB/GBSeletorCidade.razor.rz.scp.css */
.citysel[b-3jruikkd9d] {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.citysel__sr[b-3jruikkd9d] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.citysel__select[b-3jruikkd9d] {
    width: clamp(140px, 18vw, 220px);
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(15, 23, 42, .15);
    border-radius: 12px;
    background: #fff;
    color: var(--azul-escuro);
    font: inherit;
    outline: none;
    font-size: var(--step--1);
}

    .citysel__select:focus[b-3jruikkd9d] {
        border-color: rgba(14, 165, 233, .7);
        box-shadow: 0 0 0 4px rgba(14, 165, 233, .20);
    }

/* <= 520px */
@media (max-width: 520px) {
    .citysel__select[b-3jruikkd9d] {
        width: 150px;
        height: 36px;
        padding: 0 10px;
    }
}
/* /Components/Shared/GB/GBSideCard.razor.rz.scp.css */
.gb-cols[b-bjgizznjzg] {
    display: grid;
    grid-template-columns: max-content 1fr; /* esquerda = conteúdo, direita = resto */
    gap: 16px;
    align-items: start;
}

.gb-cols__left[b-bjgizznjzg] {
    white-space: nowrap; /* opcional: impede quebra e mantém "tamanho do conteúdo" */
    min-width: 0;
}

.gb-cols__right[b-bjgizznjzg] {
    min-width: 0; /* evita overflow em conteúdo longo */
}
/* /Components/Shared/GB/GBTag.razor.rz.scp.css */
.gb-tagger[b-rrmpzvbwrz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .75rem;
    border-radius: 999px;
    font-size: .9rem;
    line-height: 1;
    letter-spacing: .01em;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.7);
    color: rgba(0,0,0,0.72);
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(0);
    box-shadow: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
    pointer-events: auto;
    margin: 5px;
}

    .gb-tagger:hover[b-rrmpzvbwrz],
    .gb-tagger:focus-visible[b-rrmpzvbwrz] {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
        border-color: rgba(0, 0, 0, 0.14);
        background: rgba(255, 255, 255, 1);
    }

a.gb-tagger[b-rrmpzvbwrz] {
    cursor: pointer;
}

.gb-tagger:focus-visible[b-rrmpzvbwrz] {
    outline: 2px solid rgba(0, 0, 0, 0.45);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .gb-tagger[b-rrmpzvbwrz] {
        transition: none;
    }

        .gb-tagger:hover[b-rrmpzvbwrz],
        .gb-tagger:focus-visible[b-rrmpzvbwrz] {
            transform: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
        }
}
/* /Components/Shared/GB/GBTitulo.razor.rz.scp.css */
.gb-titulo-wrap[b-iorxk6elcw] {
    margin: 0 0 1.1rem 0;
}

.gb-kicker[b-iorxk6elcw] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.62);
    margin: 0 0 .75rem 0;
}

    .gb-kicker[b-iorxk6elcw]::before {
        content: "";
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.20);
    }

.gb-titulo[b-iorxk6elcw] {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gb-titulo__link[b-iorxk6elcw] {
    color: inherit;
    text-decoration: none;
}

    .gb-titulo__link:hover[b-iorxk6elcw] {
        text-decoration: underline;
        text-underline-offset: .16em;
    }

    .gb-titulo__link:focus-visible[b-iorxk6elcw] {
        outline: 2px solid rgba(0, 0, 0, 0.55);
        outline-offset: 4px;
        border-radius: 6px;
    }

.gb-subtitulo[b-iorxk6elcw] {
    margin: .45rem 0 50px 0;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 85ch;
}
/* /Components/Shared/GB/GBToastHost.razor.rz.scp.css */
/* ===== Host: cobre viewport inteira e posiciona via flex ===== */
.gb-toastv[b-lg2jfxf02p] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    padding: 16px;
    gap: 10px;
}

/* posições */
.gb-toastv--center[b-lg2jfxf02p] {
    align-items: center;
    justify-content: center;
}

.gb-toastv--center-right[b-lg2jfxf02p] {
    align-items: center;
    justify-content: flex-end;
}

.gb-toastv--top-center[b-lg2jfxf02p] {
    align-items: flex-start;
    justify-content: center;
}

.gb-toastv--top-right[b-lg2jfxf02p] {
    align-items: flex-start;
    justify-content: flex-end;
}

.gb-toastv--bottom-right[b-lg2jfxf02p] {
    align-items: flex-end;
    justify-content: flex-end;
}

/* item clicável */
.gb-toastv__item[b-lg2jfxf02p] {
    pointer-events: auto;
    width: min(520px, calc(100vw - 32px));
}

/* card: fundo branco + borda (sem “laranja chapado”) */
.gb-toastv__card[b-lg2jfxf02p] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .16);
    color: rgba(15, 23, 42, .95);
    box-shadow: 0 16px 34px rgba(0,0,0,.16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* ícone */
.gb-toastv__icon[b-lg2jfxf02p] {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    background: transparent;
    font-weight: 900;
    line-height: 1;
    user-select: none;
}

/* corpo */
.gb-toastv__body[b-lg2jfxf02p] {
    min-width: 0;
    flex: 1 1 auto;
}

.gb-toastv__title[b-lg2jfxf02p] {
    font-weight: 900;
    font-size: .98rem;
    line-height: 1.1;
    margin: 1px 0 6px 0;
}

.gb-toastv__text[b-lg2jfxf02p] {
    font-size: .95rem;
    line-height: 1.35;
}

/* fechar */
.gb-toastv__close[b-lg2jfxf02p] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    cursor: pointer;
    opacity: .7;
    transition: transform 120ms ease, opacity 120ms ease;
}

    .gb-toastv__close:hover[b-lg2jfxf02p] {
        opacity: 1;
        transform: translateY(-1px);
    }

/* tipos: só cor/borda */
.gb-toastv__card.is-sucesso[b-lg2jfxf02p] {
    color: rgba(22,163,74,.95);
    border-color: rgba(22,163,74,.45);
}

.gb-toastv__card.is-perigo[b-lg2jfxf02p] {
    color: rgba(220,38,38,.95);
    border-color: rgba(220,38,38,.45);
}

.gb-toastv__card.is-alerta[b-lg2jfxf02p] {
    color: rgba(245,158,11,.98);
    border-color: rgba(245,158,11,.55);
}

.gb-toastv__card.is-aviso[b-lg2jfxf02p] {
    color: rgba(234,88,12,.95);
    border-color: rgba(234,88,12,.45);
}

.gb-toastv__card.is-info[b-lg2jfxf02p] {
    color: rgba(59,130,246,.95);
    border-color: rgba(59,130,246,.45);
}

.gb-toastv__card.is-neutro[b-lg2jfxf02p] {
    color: rgba(15,23,42,.95);
    border-color: rgba(148,163,184,.55);
}

/* animação */
@media (prefers-reduced-motion: no-preference) {
    .gb-toastv__item[b-lg2jfxf02p] {
        animation: gb-toastv-in-b-lg2jfxf02p 180ms ease-out both;
    }

    @keyframes gb-toastv-in-b-lg2jfxf02p {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===== media query (max-width) por último ===== */
@media (max-width: 480px) {
    .gb-toastv[b-lg2jfxf02p] {
        padding: 10px;
    }

    .gb-toastv__item[b-lg2jfxf02p] {
        width: calc(100vw - 20px);
    }
}
/* /Components/Shared/GB/GBVoltarAoTopo.razor.rz.scp.css */
body[b-xi0h7qzs3z] {
}
/* /Components/Shared/GBBanner.razor.rz.scp.css */
.bundle-mock[b-ctyw3qh89a] {
    background-color: #000; /* cinza sólido */
    margin-inline: auto;
    display: block;
    border-radius: 8px;
}
/* /Components/Shared/GbCarousel.razor.rz.scp.css */
.gbc-full[b-u6vjapv3ao] {
    width: calc(100vw - 80px);
    margin-left: calc(50% - 50vw + 40px);
    margin-right: calc(50% - 50vw + 40px);
}

.gbc[b-u6vjapv3ao] {
    position: relative;
    padding: 14px 54px;
}

.gbc-viewport[b-u6vjapv3ao] {
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .gbc-viewport[b-u6vjapv3ao]::-webkit-scrollbar {
        display: none;
    }

.gbc-track[b-u6vjapv3ao] {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: stretch;
    padding: 2px;
}

/* CRÍTICO: como os cards vêm via ChildContent, precisa ::deep */
[b-u6vjapv3ao] .gbc-track > * {
    flex: 0 0 auto;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.gbc-btn[b-u6vjapv3ao] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(15,23,42,.12);
}

.gbc-prev[b-u6vjapv3ao] {
    left: 12px;
}

.gbc-next[b-u6vjapv3ao] {
    right: 12px;
}

.gbc-btn[disabled][b-u6vjapv3ao] {
    opacity: .35;
    cursor: not-allowed;
    box-shadow: none;
}
/* /Components/Shared/GBHero.razor.rz.scp.css */
/* ===============================
   HERO PORTAL – GUIA DE BAIRROS
   =============================== */

/* Comportamento global de scroll (sem JS) */
html[b-wjfk0n89r1] {
    scroll-behavior: smooth;
}

/* Evita que o topo da seção fique escondido */
section[id][b-wjfk0n89r1] {
    scroll-margin-top: 96px;
}

/* ===============================
   HERO BASE
   =============================== */

.hero-portal[b-wjfk0n89r1] {
    position: relative;
    width: 100%;
    height: min(75vh, 720px);
    overflow: hidden;
}

.hero-portal--parallax[b-wjfk0n89r1] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* O PARALLAX DE VERDADE */
    background-attachment: fixed;
}

@media (max-width: 1024px) {
    .hero-portal--parallax[b-wjfk0n89r1] {
        background-attachment: scroll;
    }
}


/* Imagem de fundo – clara, sem overlay */
.hero-portal__bg[b-wjfk0n89r1] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   FAIXA EDITORIAL (CONTENT BAND)
   =============================== */

.hero-band[b-wjfk0n89r1] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradiente só na base — não mata a imagem */
    background: linear-gradient( to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.82) 55%, rgba(10, 10, 10, 0.65) 75%, rgba(10, 10, 10, 0.00) 100% );
}

.hero-band__container[b-wjfk0n89r1] {
    max-width: 1200px;
    margin-inline: auto;
    padding: 2.5rem 1.5rem 3rem;
    color: #ffffff;
}

/* ===============================
   TEXTO
   =============================== */

.hero-band__kicker[b-wjfk0n89r1] {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.hero-band__title[b-wjfk0n89r1] {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    margin: 0 0 0.75rem 0;
}

.hero-band__subtitle[b-wjfk0n89r1] {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* ===============================
   NAVEGAÇÃO COM ÍCONES
   =============================== */

.hero-band__nav[b-wjfk0n89r1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

    /* Botão/ícone */
    .hero-band__nav a[b-wjfk0n89r1] {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.6rem 0.9rem;
        border-radius: 999px;
        background: var(--brand);
        border: 1px solid rgba(255, 255, 255, 0.28);
        color: #ffffff;
        text-decoration: none;
        white-space: nowrap;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: background 0.2s ease, transform 0.2s ease;
    }

        .hero-band__nav a:hover[b-wjfk0n89r1] {
            background: var(--brand-600);
            transform: translateY(-1px);
        }

    /* Ícones SVG */
    .hero-band__nav svg[b-wjfk0n89r1] {
        width: 18px;
        height: 18px;
        fill: #ffffff;
        flex-shrink: 0;
    }

    /* Texto do botão */
    .hero-band__nav span[b-wjfk0n89r1] {
        font-size: 0.95rem;
        line-height: 1;
    }

.hero-band__title[b-wjfk0n89r1] {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hero-band__subtitle[b-wjfk0n89r1] {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.30), 0 4px 12px rgba(0, 0, 0, 0.35);
}
.hero-band__kicker[b-wjfk0n89r1] {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}


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

@media (max-width: 768px) {
    .hero-portal[b-wjfk0n89r1] {
        height: min(80vh, 620px);
    }

    .hero-band__container[b-wjfk0n89r1] {
        padding: 2rem 1.25rem 2.5rem;
    }

    .hero-band__subtitle[b-wjfk0n89r1] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-band__nav[b-wjfk0n89r1] {
        gap: 0.5rem;
    }

        .hero-band__nav a[b-wjfk0n89r1] {
            padding: 0.55rem 0.75rem;
        }

        .hero-band__nav span[b-wjfk0n89r1] {
            font-size: 0.9rem;
        }
}
/* /Components/Shared/Hero.razor.rz.scp.css */
.hero[b-bwqw8pp3ed] {
    position: relative;
    min-height: clamp(50vh, 70vh, 92vh);
    width: 100%;
    overflow: hidden;
    display: grid;
    align-items: center;
    justify-content: center;
    place-items: center;
    text-align: center;
    color: var(--azul);
    margin-top: -96px;
    padding-top: 96px;
    z-index: -5;
}

.hero-content[b-bwqw8pp3ed] {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    padding: 20px 26px;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.40);
    border-radius: 16px;
}

.hero-title[b-bwqw8pp3ed] {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: .2px;
}

.hero-lead[b-bwqw8pp3ed] {
    font-size: 20px;
    margin-bottom: .25rem;
}
.hero-overlay[b-bwqw8pp3ed] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(255,0,0,.05) 40%, rgba(0,0,0,.05) 100%);
}
.hero-bg[b-bwqw8pp3ed] {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
}
/* /Components/Shared/Imagem.razor.rz.scp.css */
.media[b-4r02060sjx] {
    border-radius: 12px;
    overflow: clip;
    box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 12px rgba(0,0,0,.06);
    background: #f7f8fa;
}
    .media img[b-4r02060sjx] {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 3 / 2; /* Ajuste se precisar */
    }

    .media figcaption[b-4r02060sjx] {
        font-size: 16px;
        color: var(--gb-muted, #62666d);
        padding: .5rem .875rem;
        border-top: 0px solid #e6e8eb;
        background: #fbfcfd;
    }

.sobre-col h3[b-4r02060sjx] {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    margin-bottom: .50rem;
}


/* Container do efeito */
figure.media.media--pro[b-4r02060sjx] {
    position: relative;
    overflow: clip;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 6px 12px rgba(0,0,0,.06);
    /* tokens locais */
    --pro-scale: 1.03;
    --pro-dur: 600ms;
    --pro-ease: cubic-bezier(.2,.6,.2,1);
    --pro-highlight: rgba(255,255,255,.10);
    --pro-vignette: rgba(0,0,0,.06);
}

    /* Transição do IMG — com !important para ganhar da cascata */
    figure.media.media--pro > picture > img[b-4r02060sjx] {
        transform: translateZ(0) scale(1);
        opacity: .97;
        will-change: transform, opacity;
        backface-visibility: hidden;
        transition: transform var(--pro-dur, 360ms) var(--pro-ease, ease), opacity var(--pro-dur, 360ms) var(--pro-ease, ease), filter var(--pro-dur, 360ms) var(--pro-ease, ease) !important;
    }

    /* Overlay sutil (sheen + vinheta) */
    figure.media.media--pro[b-4r02060sjx]::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0;
        background: radial-gradient(120% 70% at 50% 10%, var(--pro-highlight) 0%, transparent 60%), radial-gradient(120% 100% at 50% 120%, var(--pro-vignette) 0%, transparent 60%);
        transition: opacity var(--pro-dur, 360ms) var(--pro-ease, ease);
    }

    /* Hover/foco — sem media query para garantir em dispositivos híbridos */
    figure.media.media--pro:hover > picture > img[b-4r02060sjx],
    figure.media.media--pro:focus-within > picture > img[b-4r02060sjx] {
        transform: scale(var(--pro-scale, 1.03));
        opacity: 1;
    }

    figure.media.media--pro:hover[b-4r02060sjx]::after,
    figure.media.media--pro:focus-within[b-4r02060sjx]::after {
        opacity: 1;
    }

    /* Sombra do card no hover (suave) */
    figure.media.media--pro:hover[b-4r02060sjx] {
        box-shadow: 0 3px 8px rgba(0,0,0,.08), 0 14px 28px rgba(0,0,0,.12);
        transition: box-shadow 260ms ease;
    }
/* /Components/Shared/MapaEmbed.razor.rz.scp.css */
.mapa-embed[b-54dj25dktc] {
    position: relative;
    width: 100%;
    height: clamp(360px, 55vh, 520px);
}

    .mapa-embed iframe[b-54dj25dktc] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
/* /Components/Shared/Nota.razor.rz.scp.css */
.nota[b-8izqlq1v7w] {
    background: color-mix(in srgb, var(--gb-accent, #0ea5e9) 10%, #fff);
    border-left: 4px solid var(--gb-accent, #0ea5e9);
    padding: .75rem 1rem;
    border-radius: 8px;
    margin-top: .75rem;
}
/* /Components/Shared/OLD-GBSecao.razor.rz.scp.css */
.secao-elevada[b-ueszxqdcqa] {
    width: calc(100vw - 40px);
    margin: 20px;
    margin-left: calc(50% - 50vw + 20px);
    margin-right: calc(50% - 50vw + 20px);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(-0px);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
/* /Components/Shared/SectionTitle.razor.rz.scp.css */
.gb-section-header[b-7fx7k1vv1v] {
    width: 100%;
    
}

.gb-section-header__inner[b-7fx7k1vv1v] {
    
    margin-inline: auto;
    padding-inline: 1rem;
}

.gb-section-header__row[b-7fx7k1vv1v] {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}

.gb-section-header__dot[b-7fx7k1vv1v] {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #0ea5e9;
    box-shadow: 0 0 0 5px rgba(14,165,233,.12);
}

.gb-section-header__rule[b-7fx7k1vv1v] {
    height: 1px;
    background: linear-gradient( 90deg, rgba(2,132,199,.7), rgba(2,132,199,.25), rgba(100,116,139,0) );
}

.gb-section-header__title[b-7fx7k1vv1v] {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #0A3A47;
    max-width: 22ch;
}
.gb-section-header__title[b-7fx7k1vv1v] {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #0A3A47;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.gb-section-header__subtitle[b-7fx7k1vv1v] {
    margin-top: .6rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 70ch;
}
