.share-buttons {
    display: flex;
    gap: 10px;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-facebook { background-color: #1877F2; }
.btn-twitter { background-color: #000; }
.btn-linkedin { background-color: #0A66C2; }
.btn-whatsapp { background-color: #25D366; }

.btn-social:hover {
    transform: scale(1.1);
    opacity: 0.85;
}
:root {
    --azul: #0e5ee6;
    --azul-esc: #0b4ab4;
    --cinza-claro: #f5f7fb;
    --cinza-borda: #e6e9f2;
    --texto-suave: #6b7280;
    --radius: 16px;
}

body {
    color: #111827
}

.navbar-brand span.logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700
}

.logo-badge {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #e6ecff;
    color: #2742ff;
    font-weight: 800
}

.hero {
    background: linear-gradient(135deg, var(--azul), var(--azul-esc));
    color: #fff;
    padding: 48px 0 24px
}

.hero .search-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 20px;
    border-radius: var(--radius)
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: #103f9d1f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    font-size: .85rem
}

.chip i {
    font-size: .85em
}

.pill {
    display: inline-block;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: #eceefe;
    color: #2742ff;
    font-weight: 600;
    font-size: .8rem
}

.btn-ghost {
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, .12);
    --bs-btn-border-color: transparent
}

.card {
    border: 1px solid var(--cinza-borda);
    border-radius: var(--radius)
}

.card .btn-sm {
    padding: .35rem .6rem;
    border-radius: 10px
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem
}

.quick-filters .btn-check:checked+label {
    background: #e9efff;
    border-color: #c8d8ff;
    color: #1437c8
}

.quick-filters label {
    border-radius: 999px
}

.link-muted {
    color: var(--texto-suave);
    text-decoration: none
}

.link-muted:hover {
    color: #0b4ab4
}

footer {
    border-top: 1px solid var(--cinza-borda);
    background: #fff
}

.fs-7 {
    font-size: .9rem
}

.fs-8 {
    font-size: .8rem
}

.form-check-input {
    transform: scale(1.150);
}

.form-check-input:checked {
    background-color: white !important;
    border-color: white !important;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='black' d='M6.173 9.753l2.733 2.733 5.394-5.394a.75.75 0 111.06 1.06l-6.424 6.425a.75.75 0 01-1.06 0L5.113 10.82a.75.75 0 111.06-1.06z'/%3e%3c/svg%3e") !important;
}
/*


 */

:root { --header-height: 61px; }

@media (min-width: 768px){
    .legislacao-filtros {
        position: sticky;
        top: calc(var(--header-height) + 2rem);
        max-height: calc(100vh - var(--header-height) - 2rem);
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1;
    }

    .legislacao-filtros::-webkit-scrollbar {
        display: none; 
    }
}

.hover-border-primary:hover {
    border-color: #007bff !important;
}

.bg-hover-gray:hover {
    background-color: #f9f9f9;
}
