:root {
    /* --- Tons de Azul Escuro (Dark Blue) --- */
    --dark-blue: #003063;
    --pmf-dark: #003063;

    /* --- Tons de Azul Ciano (Cyan Accent) --- */
    --blue-primary: #00B1EB;
    --pmf-accent: #00b1eb;
    --pmf-accent-bg: rgb(0 177 235 / 0.08);
    --pmf-accent-ring: rgb(0 177 235 / 0.30);

    /* --- Tons de Azul Royal (Brand Accent) --- */
    --brand-accent: #3b82f6;
    --brand-accent-hover: #2563eb;
    --brand-accent-soft: #eff6ff;
    --sf-accent: #1d6fd8;
    --sf-accent-soft: #e8f1fc;
    --sf-accent-text: #1354a8;

    /* --- Brancos e Superfícies Claras --- */
    --white: #FFFFFF;
    --brand-surface: #ffffff;
    --sf-bg: #ffffff;
    --brand-tint: #f9fafb;
    --pmf-surface: rgb(255 255 255 / 0.98);
    --pmf-surface2: rgb(242 247 251 / 1);

    /* --- Cinzas Claros e Fundos (Off-White) --- */
    --off-white: #F5F5F5;
    --sf-bg2: #f5f6f8;

    /* --- Textos e Cinzas Médios --- */
    --gray-text-old: #757575;
    --gray-text: #6b7280;
    --sf-text-muted: #6b7280;
    --brand-muted: #666666;
    --tag-bg: rgba(117, 117, 117, 0.44);
    --pmf-muted: rgb(0 48 99 / 0.45);

    /* --- Textos Escuros e Pretos --- */
    --brand-primary: #1a1a1a;
    --sf-text: #1a1a1a;

    /* --- Bordas --- */
    --brand-border: #e5e7eb;
    --sf-border: rgba(0, 0, 0, .1);
    --sf-border2: rgba(0, 0, 0, .18);
    --pmf-border: #D9E6F2;
    --pmf-border-str: #d0dce7;

    /* --- Miscelânea (Efeitos e Bordas) --- */
    --shadow-standard: 0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
    --sf-radius: 8px;
    --sf-radius-lg: 12px;
    --sf-font: inherit;
    --pmf-font: 'Outfit', system-ui, sans-serif;
    --pmf-radius-sm: 0.65rem;
    --pmf-radius-md: 0.85rem;
    --pmf-radius-lg: 1.2rem;
    --pmf-radius-pill: 24px;
}


body {
    font-family: "Outfit", system-ui, sans-serif;
    background-color: #f7f9fc !important;
}

/* ===========================================================s */

/* Animação dos Menus superiores */
.group:hover .menu-animado {
    margin-left: 0px !important;
    clip-path: inset(0 0 0 0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

.title {
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 0px 0;
    color: var(--dark-blue);
    font-size: 40px;
}

.subtitle {
    color: var(--sf-text-muted);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 25px;
}

.noticia-card {
    display: flex;
    background: var(--white);
    box-shadow: var(--shadow-standard);
    border-radius: 12px;
    border: 1px solid transparent;
    overflow: hidden;
    font-family: 'Effra Trial', sans-serif;
    text-decoration: none;
}

.noticia-card:hover {
    border: 1px solid var(--blue-primary);
    box-shadow: 0 8px 30px rgb(0 48 99 / 0.07), inset 0 1px 0 rgb(255 255 255 / 0.85);
    transition: border 0.5s ease;
}

.featured-card {
    width: 100%;
    margin: 0 auto 30px;
}

.featured-card a {
    flex-direction: column;
    padding: 0 !important;
}

.featured-card .card-thumb {
    width: 100%;
    height: 325px;
    border-radius: 12px 12px 0 0;
}

.featured-card .card-info {
    padding: 32px;
    min-height: auto;
}

.featured-card .category {
    font-size: 28px;
    color: var(--blue-primary);
}

.card-thumb {
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.main-title {
    font-weight: 500;
    font-size: 24px;
    color: #003063 !important;
    line-height: 1.2;
    margin-top: 10px;
}

.main-title:hover {
    color: var(--blue-primary) !important;
    transition: color 0.2s ease;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.news-grid .noticia-card:hover {
    transform: translateY(-4px);
}

.grid-card {
    min-height: 300px;
    display: flex;
}

.grid-card a {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    align-items: stretch;
    position: relative;
}

.grid-card .card-thumb {
    width: 100%;
    height: 200px;
    border-radius: 12px 12px 0 0;
}

.grid-card .card-info {
    width: 100%;
    padding: 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.grid-card .card-info {
    /* Segunda ocorrência de card-info para grid */
    padding: 15px 20px 25px 20px;
}

.grid-card .category {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--blue-primary);
}

.date-badge {
    position: absolute;
    top: 150px;
    right: 16px;
    z-index: 10;

    min-width: 44px;
    padding: 6px 8px;
    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;

    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.destaque-principal {
    position: relative;
}

.destaque-principal .date-badge {
    position: absolute;
    top: 275px;
    right: 16px;
    min-width: 44px;
    z-index: 10;
}

.day {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.month {
    font-size: 8px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.grid-title {
    font-size: 16px;
    font-weight: 600;
    color: #003063 !important;
    line-height: 1.4;
    margin-top: 8px;
}

.Area-now {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(242 247 251 / var(--tw-bg-opacity, 1));
    border-width: 1px;
    border-color: rgb(217 230 240 / 0.7);
    border-radius: 1.5rem;
    border: 1px solid rgb(217 230 240 / 0.92);
    box-shadow: 0 8px 30px rgb(0 48 99 / 0.07), inset 0 1px 0 rgb(255 255 255 / 0.85);
}

.Area-now h2 {
    margin-left: 25px;
}

.title-acontecendo {
    gap: 0.5rem;
    font-size: 1.7rem;
    justify-content: space-between;
    align-items: center;
    display: flex;
    /* margin-bottom: 1.5rem; */
}

.acontecendo-now {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    padding: 25px;
}

.acontecendo-now a {
    min-width: 0;
    border-radius: 0.85rem;
}

.acontecendo-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #add8e6;
    border-radius: 1.2rem;
    margin: 0px !important;
    gap: 0px !important;
    padding: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 48, 99, 0.05);
    transition: transform 0.2s ease;
}

.acontecendo-card a {
    text-decoration: none;
    color: inherit;
}

.acontecendo-card:hover {
    transform: ease-in-out;
    border-color: var(--blue-primary);
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-item h3 {
    margin: 0px !important;
}


.card-item img {
    margin: 0px;
    padding: 2px;
    align-self: center !important;
    justify-content: center !important;
    object-fit: cover;
    object-position: center;
    min-width: 90px;
    min-height: 80px;
    max-width: 90px;
    max-height: 80px;
    border-radius: 12px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.info-time {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #00acee;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-blue) !important;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}


/* ====================================================== */

/* Classes Extras Encontradas no Código */

.page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 32px;
    width: 170px;
}

.page-content.noticias {
    padding: 35px;
}

.linha {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 3rem 0;
}

.novo-filtro {
    background: var(--dark-blue);
    margin: 1%;
    padding: 12%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100vw - 2rem, 20rem);
    height: 100%;
}

.novo-filtro h2 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: bold;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding: 5px 10px;
    width: 100%;
}

.conteiner,
.conteiner select,
.select-container {
    background-color: var(--white);
    border-radius: 9999px;
    border: none;
}

.input-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
    padding: 4px 6px;
    gap: 6px;
}

.input-wrapper select,
.input-wrapper input,
.custom-select {
    border: none !important;
    background: transparent;
    outline: none;
}

.input-wrapper select {
    padding: 2px;
    width: 100%;
}

.input-wrapper i {
    color: var(--blue-primary);
    cursor: pointer;
}

.input-wrapper label,
.field-label {
    color: var(--white);
}


.pagination-wrapper {
    display: flex;
    align-self: center;
    align-items: center;
    margin-top: 2.85rem;
    padding-top: 2rem;
    width: 100%;
    border-top: 1px solid rgb(217 230 240 / 0.85);
}

.pagination {
    display: flex;
    width: 100%;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 0.5px solid var(--sf-border);
    background: transparent !important;
    justify-content: center !important;
}

.pagination span {
    margin: 0px 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 12px !important;
    color: var(--white) !important;
    border: 0px solid transparent !important;
    background-color: var(--dark-blue) !important;
}

.pagination a,
.pagination-separator a {
    flex-shrink: 0;
    margin: 0px 2px;
    justify-content: center;
    cursor: default;
    color: #003063;
    font-size: 0.875rem;
    align-items: center;
    font-weight: 600;
    border-radius: 0.65rem;
    background: var(--surface-white);
    font-family: inherit;
    border: 1px solid rgb(217 230 240 / 1);
    cursor: pointer;

}

.proximo-depois {
    border-radius: 24px !important;
    align-items: center;
}


.pagination a:hover,
.pagination-separator a:hover {
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 4px rgb(0 48 99 / 0.04), inset 0 1px 0 rgb(255 255 255 / 0.92);

}

.field-label {
    font-size: 14px;
    font-weight: 600;
    margin-left: 4px;
}

input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
}

.checker {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.checker label {
    padding: 15px 0;
}

.checker span {
    color: var(--white);
    font-size: 15px;
}

.select-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 45px;
    transition: box-shadow 0.2s ease;
}

.select-container:focus-within {
    box-shadow: 0 0 0 2px var(--blue-primary);
}

.custom-select {
    border-radius: 0.5rem;
    border-width: 1px;
    border-color: var(--brand-border);
    font-size: 14px;
    width: 100%;
    font-size: 16px;
    color: var(--brand-primary);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 0.6rem 0.75rem 2.5rem 0;
}

.select-icon {
    position: absolute;
    right: 15px;
    color: var(--blue-primary);
    pointer-events: none;
    font-size: 12px;
}

.submit-data {
    background: none;
    border: none;
    cursor: pointer;
    padding-left: 10px;
}

.noticia-card a {
    display: flex;
    text-decoration: none;
    width: 100%;
    height: 40%;
}

.servicos-container {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-container {
    width: 100%;
    height: 80px;
    position: absolute;
    background-color: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.card-img {
    width: 80px !important;
    height: 80px;
    object-fit: contain;
    border-radius: 0.8rem;
    flex-shrink: 0;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: whitesmoke;
    position: relative;
    padding: 24px 0 24px 0;
    margin: 12px 0 24px 0;
    border-radius: 16px;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker-move 120s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.2rem;
}

.ticker-item span {
    font-weight: bold;
    color: var(--dark-blue);
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

@keyframes ticker-move {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-80%, 0, 0);
    }
}

@media screen and (max-width: 1400px) {
    .acontecendo-now {
        grid-template-columns: none;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);

    }

    .page-content.noticias {
        padding: 5px;
    }

}

/* ========================================================================================= */
/* Css do menu lateral - filtros */
/* ========================================================================================= */

.list-sidebar {
    padding: 35px 0 20px 0 !important;
}

#sidebar-filtros * {
    box-sizing: border-box;
    margin: 0;
}

#sidebar-filtros {
    width: 320px;
    background: var(--pmf-surface);
    border: 1px solid var(--pmf-border);
    border-radius: var(--pmf-radius-lg);
    padding: 2.1rem 1.7rem;
    font-family: var(--pmf-font);
    font-size: 14px;
    color: var(--pmf-dark);
    max-height: 100vh;
    overflow-y: hidden;
    overflow: hidden;

    /* ── Configurações para Firefox ── */
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
}

#sidebar-filtros:hover {
    overflow-y: auto;
    scrollbar-color: var(--pmf-accent) transparent;
    scrollbar-width: 30%;
}


/* ── Cabeçalho ── */
#sidebar-filtros .sf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--pmf-border);
}

#sidebar-filtros .sf-title {
    font-family: var(--pmf-font);
    font-size: 1.5rem;
    font-weight: 600;
    /* letter-spacing: -0.01em; */
    color: var(--pmf-dark);
    text-transform: none;
}

#sidebar-filtros .sf-clear-btn {
    font-family: var(--pmf-font);
    font-size: 13px;
    font-weight: 500;
    /* letter-spacing: -0.01em; */
    color: var(--pmf-accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

#sidebar-filtros .sf-clear-btn:hover {
    opacity: 0.75;
}

/* ── Labels de seção ── */
#sidebar-filtros .sf-section-buscar {
    display: block;
    font-family: var(--pmf-font);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pmf-muted);
    margin-bottom: 6px;
}

#sidebar-filtros .sf-section-label {
    display: block;
    font-family: var(--pmf-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pmf-muted);
    margin-bottom: 6px;
}

/* ── Campo de busca ── */
#sidebar-filtros .sf-search-wrap {
    position: relative;
    margin-bottom: 2.1rem;
}

#sidebar-filtros .sf-search-input {
    width: 100%;
    background: var(--pmf-surface2);
    border: 1px solid var(--pmf-border);
    border-radius: 8px;
    padding: 0.9rem 2.5rem 0.9rem 1.1rem;
    font-family: var(--pmf-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pmf-dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#sf-search-input {
    padding-right: 40px;
}

#sidebar-filtros .sf-search-input::placeholder {
    color: var(--pmf-muted);
    font-weight: 500;
}

#sidebar-filtros .sf-search-input:focus {
    border-color: var(--pmf-accent);
    box-shadow: 0 0 0 3px var(--pmf-accent-ring);
}

/* o botão submit dentro do sf-search-wrap */
#sidebar-filtros .sf-search-wrap button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#sidebar-filtros .sf-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pmf-accent);
    pointer-events: none;
    font-size: 12px;
}

/* ── Tags de filtros ativos ── */
#sidebar-filtros .sf-active-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 1.1rem;
}

#sidebar-filtros .sf-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--pmf-accent-bg);
    border: 1px solid var(--pmf-accent-ring);
    border-radius: var(--pmf-radius-pill);
    padding: 0.28rem 0.75rem;
    font-family: var(--pmf-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--pmf-dark);
    cursor: pointer;
    line-height: 1.4;
    transition: background 0.2s ease, border-color 0.2s ease;
}

#sidebar-filtros .sf-tag:hover {
    background: rgb(0 177 235 / 0.15);
    border-color: var(--pmf-accent);
}

#sf-active-section {
    display: none;
}

#sf-active-section.has-tags {
    display: block;
}

/* ── Cards de filtro ── */
#sidebar-filtros .sf-card {
    background: var(--pmf-surface2);
    border: 1px solid var(--pmf-border);
    border-radius: var(--pmf-radius-md);
    padding: 1.5rem 1.4rem 1.6rem;
    margin-bottom: 2rem;
}

#sidebar-filtros .sf-card:last-child {
    margin-bottom: 0;
}

#sidebar-filtros .sf-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 8px;
    user-select: none;
}

#sidebar-filtros .sf-card-head-title {
    font-family: var(--pmf-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--pmf-dark);
}

/* Perfil — sem cabeçalho colapsável, título direto */
#sidebar-filtros .sf-card>p.sf-card-head-title {
    font-family: var(--pmf-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pmf-dark);
    margin: 0px 0px 10px;
}

#sidebar-filtros .sf-chevron {
    font-size: 13px;
    color: var(--pmf-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

#sidebar-filtros .sf-chevron.open {
    transform: rotate(180deg);
}

#sidebar-filtros .sf-card-head:hover .sf-chevron {
    color: var(--pmf-accent);
}

/* #sidebar-filtros .sf-list {
    padding-bottom: 1rem;
} */

/* ── Lista e linhas ── */
#sidebar-filtros .sf-row,
#sidebar-filtros .sf-row *,
#sidebar-filtros .sf-row a,
#sidebar-filtros .sf-row span,
#sidebar-filtros .sf-row label {
    font-family: var(--pmf-font) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--pmf-dark) !important;
    text-decoration: none !important;
}

#sidebar-filtros .sf-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0rem 0rem 1rem;
    border-radius: var(--pmf-radius-sm);
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
    transition: background 0.15s ease, color 0.15s ease;
}

#sidebar-filtros .sf-row:hover,
#sidebar-filtros .sf-row:hover * {
    /* background: var(--pmf-accent-bg) !important; */
    color: var(--pmf-accent) !important;
}

/* Estado checked da linha */
#sidebar-filtros .sf-row.checked,
#sidebar-filtros .sf-row.checked * {
    color: var(--pmf-dark) !important;
    font-weight: 700 !important;
}

/* ── Checkbox visual ── */
#sidebar-filtros .sf-checkbox {
    min-width: 16px;
    width: 18px;
    height: 18px;
    border: 0.5px solid var(--pmf-border-str);
    border-radius: 4px;
    background: var(--pmf-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--pmf-dark);
    flex-shrink: 0;
}

#sidebar-filtros .sf-checkbox.checked {
    background: var(--pmf-accent-bg);
    border-color: var(--pmf-accent);
    color: var(--pmf-dark);
}

/* ── Botões de ação ── */
.sf-btn-ajuste {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid var(--pmf-border);
}

#sidebar-filtros .sf-expand-btn {
    padding-top: 3px;
    margin-top: 6px;
    font-family: var(--pmf-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--pmf-dark);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#sidebar-filtros .sf-expand-btn .fa-solid {
    font-size: 9px;
    align-items: center;
    justify-content: center;
    color: var(--pmf-accent);

}

#sidebar-filtros .sf-expand-btn:hover {
    color: var(--pmf-accent);
}

.sf-close-btn {
    display: none;
}

#sidebar-filtros .sf-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.65rem 1rem;
    background: var(--pmf-dark);
    color: #fff;
    border: none;
    border-radius: var(--pmf-radius-pill);
    font-family: var(--pmf-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#sidebar-filtros .sf-submit-btn:hover {
    background: var(--pmf-accent);
}

/* teste */
#btnFiltro {
    display: none;
    position: fixed;
    inset: auto 5% 5% auto;
    z-index: 9998;
    background-color: #00b1eb;
    border: none;
    border-radius: 24px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

#btnFiltro:hover {
    transform: scale(1.05);
}


@media (max-width: 1200px) {
    #btnFiltro {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #btnFiltro {
        font-size: 14px;
        padding: 10px;
        margin: 5px;
    }
}

/* =========================================================== */
/* ── Responsivo e Versão Mobile ── */
@media screen and (max-width: 1200px) {

    #sidebar-filtros {
        position: fixed;
        top: 0;
        left: -100%;
        /* Escondido para fora da tela à esquerda */
        width: 100%;
        max-width: 360px;
        /* Limita a largura em telas intermediárias */
        height: 100vh;
        z-index: 9999;
        border: none;
        border-radius: 0;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);

        /* Permite scroll interno caso os filtros passem da altura da tela */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;

        /* Transição suave de abertura */
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Classe de ativação que o JavaScript controlará */
    #sidebar-filtros.active {
        left: 0;
        display: block;
        /* Garante a exibição caso haja conflito */
    }

    /* 2. Ajustes internos para usabilidade mobile (Toque) */
    #sidebar-filtros .sf-header {
        position: sticky;
        top: 0;
        background: var(--pmf-surface);
        z-index: 2;
        margin-top: -2.1rem;
        /* Anula o padding superior do container para fixar no topo */
        padding-top: 2.1rem;
    }

    #sidebar-filtros .sf-row {
        padding: 0.8rem 0rem;
        /* Aumenta a área de toque (Tap Target) conforme diretrizes de UX */
    }

    #sidebar-filtros .sf-checkbox {
        width: 22px;
        /* Leve aumento nos checkboxes para facilitar o clique com o polegar */
        height: 22px;
        font-size: 12px;
    }

    /* 3. Fixação do botão de submissão na base da tela (Opcional - Melhora UX) */
    #sidebar-filtros .sf-submit-btn {
        position: sticky;
        bottom: -2.1rem;
        /* Alinha com o padding inferior do container */
        margin-top: 2rem;
        padding: 0.9rem 1rem;
        border-radius: 0;
        width: calc(100% + 3.4rem);
        /* Expande para ignorar o padding lateral do container (1.7rem * 2) */
        margin-left: -1.7rem;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    }

    #mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
        /* Fica logo abaixo da sidebar (9999) */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #mobile-menu-backdrop.active {
        opacity: 1;
    }

    #mobile-menu-backdrop.hidden {
        display: none;
    }

    #sidebar-filtros .sf-search-wrap.sf-search-hidden {
        opacity: 0;
        pointer-events: none;
        transform: scaleX(0);
        transition: all 0.25s ease;
    }

    /* Garante a transição suave caso a busca mude de estado */
    #sidebar-filtros .sf-search-wrap {
        transition: all 0.25s ease;
        transform-origin: left;
    }

    /* Oculta o botão Filtro inferior direito quando o menu lateral estiver aberto */
    body.menu-aberto #btnFiltro {
        display: none !important;
    }

    /* Exibe e estiliza o botão 'X' apenas no mobile */
    .sf-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 32px;
        /* Tamanho do 'X' */
        color: #333;
        /* Substitua pela cor do seu tema se necessário */
        cursor: pointer;
        padding: 0;
        margin-right: 12px;
        /* Espaçamento entre o 'X' e o título 'Filtros' */
        line-height: 1;
    }

    #sidebar-filtros {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        z-index: 9999;
        border: none;
        border-radius: 0;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #sidebar-filtros.active {
        left: 0;
        display: block;
    }

    /* Ajuste do container do cabeçalho para alinhar os 3 elementos */
    #sidebar-filtros .sf-header {
        position: sticky;
        top: 0;
        background: var(--pmf-surface);
        z-index: 2;
        margin-top: -2.1rem;
        padding-top: 2.1rem;

        /* Define o alinhamento flexível */
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* Empurra o botão 'Limpar' automaticamente para a extremidade direita */
    #sidebar-filtros .sf-clear-btn {
        margin-left: auto;
    }

    #sidebar-filtros .sf-row {
        padding: 0.8rem 0rem;
    }

    #sidebar-filtros .sf-checkbox {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}


/* Ajuste fino para telas muito pequenas (smartphones verticais) */
@media screen and (max-width: 480px) {
    #sidebar-filtros {
        max-width: 100%;
        /* Ocupa a tela inteira em dispositivos muito pequenos */
    }
}

/* ============================================================ */
/* ── Paginação AJAX ── */
.paginacao-wrapper {
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 1.5rem 1.25rem 0.75rem;
    margin-top: 8px;
    width: 90%;
    border-top: 0.1rem solid var(--sf-border);
}

.paginacao-ajax {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.paginacao-ajax .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    background: white;
    border: 1px solid rgb(217 230 240 / 1);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.paginacao-ajax .page-link:hover {
    border-color: var(--blue-primary);
    background: transparent;
    color: var(--blue-primary);
}

.paginacao-ajax .pag-atual {
    background: var(--dark-blue) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

.paginacao-ajax .pag-anterior,
.paginacao-ajax .pag-proximo {
    gap: 6px;
    font-size: 13px;
    border-radius: 24px;
}

.paginacao-ajax .pag-anterior i,
.paginacao-ajax .pag-proximo i {
    font-size: 11px;
}

.paginacao-ajax .pag-reticencias {
    color: var(--brand-muted);
    font-weight: 600;
    padding: 0 4px;
    user-select: none;
}

/* ============================================================ */
/* ── Busca por palavras-chave ── */
/* ============================================================ */

.busca-por-palavras-wrapper {
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 1.5rem 1.25rem 0.75rem;
    margin-top: 8px;
    width: 90%;
    border-top: 0.1rem solid var(--sf-border);
}

.busca-por-palavras {
    display: flex;
    align-items: center;
    gap: 10px;
}

.busca-resultado-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--sf-accent-soft);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--dark-blue);
}

.busca-resultado-info i {
    color: var(--blue-primary);
    margin-right: 6px;
}

.busca-resultado-total {
    font-weight: 700;
    color: var(--blue-primary);
    margin-left: 4px;
}

.busca-limpar {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
    background: white;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: 6px 14px;
    transition: all 0.2s ease;
}

.busca-limpar:hover {
    background: var(--dark-blue);
    color: white;
    border-color: var(--dark-blue);
}

.busca-vazio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--sf-accent-soft);
    border-radius: 1.5rem;
    border: 1px dashed rgba(0, 174, 239, 0.3);
    margin: 2rem 0;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

/* ============================================== */

/* Servicos - CSS */

.list-servicos {
    padding: 0px 7px;
}

.list-servicos h2 {
    letter-spacing: -0.05rem;
    margin: 10px 0;
    text-transform: normal !important;
    color: var(--dark-blue) !important;
}

.column_sevice {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.service-card {
    display: flex;
    background: var(--white);
    box-shadow: var(--shadow-standard);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    font-family: 'Effra Trial', sans-serif;
    text-decoration: none;
}

.service-card:hover {
    box-shadow: 1px 1px 0px var(--brand-accent);
    transition: box-shadow 0.5s ease;
}

.icon-container {
    min-width: 25px;
    min-height: 25px;
    background: var(--blue-primary);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding: 5px 10px;
    width: 100%;
}