:root {
    --brand-green: #0d7a5f;
    --brand-green-dark: #062f23;
    --brand-green-deep: #04281d;
    --brand-mint: #6ee7c7;
    --brand-soft: #eefbf7;
    --brand-bg: #f7f9fb;
    --brand-ink: #111827;
    --brand-muted: #6b7280;
    --brand-border: #e5e7eb;
    --brand-amber: #c9831b;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, .08);
    --shadow-card: 0 4px 16px rgba(15, 23, 42, .05);
}

* {
    box-sizing: border-box;
}

body {
    background: #fff;
    color: var(--brand-ink);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.brand-text,
.btn,
.nav-link {
    font-family: Sora, Inter, system-ui, sans-serif;
    letter-spacing: 0;
}

a {
    color: var(--brand-green);
    text-decoration: none;
}

a:hover {
    color: var(--brand-green-dark);
}

.site-container {
    max-width: 1280px;
}

.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(229, 231, 235, .8);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 72px;
}

.brand-mark,
.footer-brand {
    align-items: center;
    color: var(--brand-green);
    display: inline-flex;
    gap: .75rem;
}

.brand-logo {
    display: block;
    height: 54px;
    object-fit: contain;
    width: auto;
}

.brand-logo--footer {
    opacity: .98;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    color: var(--brand-green-dark);
    font-size: 1rem;
    font-weight: 800;
}

.brand-text small {
    color: var(--brand-muted);
    font-size: .78rem;
    font-weight: 700;
}

.navbar-nav {
    gap: .2rem;
}

.nav-link {
    border-radius: 12px;
    color: #374151;
    font-size: .9rem;
    font-weight: 700;
    padding: .55rem .75rem !important;
}

.nav-link:hover,
.nav-link:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--brand-soft);
    color: var(--brand-green);
}

.dropdown-menu {
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: .55rem;
}

.dropdown-item {
    border-radius: 10px;
    font-size: .92rem;
    padding: .7rem .85rem;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: .5rem;
}

.btn-icon {
    align-items: center;
    border-radius: 14px;
    color: #374151;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.btn-icon:hover {
    background: var(--brand-soft);
    color: var(--brand-green);
}

.btn-brand,
.btn-primary {
    --bs-btn-bg: var(--brand-green);
    --bs-btn-border-color: var(--brand-green);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--brand-green-dark);
    --bs-btn-hover-border-color: var(--brand-green-dark);
    border-radius: 14px;
    font-weight: 800;
}

.btn-outline-brand,
.btn-outline-primary {
    border-color: var(--brand-green);
    border-radius: 14px;
    color: var(--brand-green);
    font-weight: 800;
}

.btn-outline-brand:hover,
.btn-outline-primary:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.home-hero {
    background-image: linear-gradient(105deg, rgba(4, 40, 29, .98) 0%, rgba(4, 40, 29, .9) 52%, rgba(4, 40, 29, .64) 100%), url("../img/hero-legal.svg");
    background-position: center right;
    background-size: cover;
    color: #fff;
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

.home-hero__content {
    max-width: 720px;
    padding: 3rem 0 8rem;
}

.badge-soft {
    align-items: center;
    background: var(--brand-soft);
    border: 1px solid #c8f7e6;
    border-radius: 999px;
    color: var(--brand-green);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 700;
    gap: .45rem;
    padding: .42rem .75rem;
}

.eyebrow {
    align-items: center;
    background: var(--brand-soft);
    border: 1px solid #c8f7e6;
    border-radius: 999px;
    color: var(--brand-green);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    gap: .45rem;
    margin-bottom: .8rem;
    padding: .42rem .75rem;
}

.badge-hero {
    background: rgba(13, 122, 95, .32);
    border-color: rgba(110, 231, 199, .32);
    color: var(--brand-mint);
}

.badge-hero span {
    background: var(--brand-mint);
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

.home-hero h1 {
    font-size: clamp(2.7rem, 7vw, 4.2rem);
    font-weight: 700;
    line-height: 1.06;
    margin: 2rem 0 1.5rem;
}

.home-hero h1 strong {
    color: var(--brand-mint);
    display: inline-block;
    font-weight: inherit;
}

.home-hero p {
    color: #d7dee6;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 610px;
}


.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.8rem;
}

.hero-metrics--compact {
    margin-top: 2.2rem;
}

.hero-metrics strong,
.metrics-row strong {
    color: #fff;
    display: block;
    font-size: 1.65rem;
    font-weight: 900;
}

.hero-metrics span {
    color: #a8b7c1;
    font-size: .85rem;
}

.quick-access {
    margin-top: -5.25rem;
    position: relative;
    z-index: 5;
}

.quick-card,
.content-card,
.page-content,
.dictionary-box,
.dictionary-side,
.study-card,
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .92);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.quick-card {
    color: inherit;
    display: block;
    min-height: 176px;
    padding: 1.7rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.quick-card:hover,
.study-card:hover,
.testimonial-card:hover {
    box-shadow: var(--shadow-soft);
    color: inherit;
    transform: translateY(-3px);
}

.icon-box {
    align-items: center;
    background: rgba(13, 122, 95, .09);
    border-radius: 15px;
    color: var(--brand-green);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.quick-card h2,
.study-card h3,
.oab-card h3 {
    font-size: 1.08rem;
    font-weight: 900;
    margin: 1rem 0 .45rem;
}

.quick-card p,
.study-card p,
.testimonial-card p,
.section-lead {
    color: var(--brand-muted);
    line-height: 1.72;
}

.section-pad {
    padding: 6.5rem 0;
}

.section-muted {
    background: var(--brand-bg);
}

.section-title,
.section-heading h2,
.page-title h1 {
    color: var(--brand-ink);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.15;
}

.section-title strong {
    color: var(--brand-green);
    font-weight: inherit;
}

.section-heading {
    margin-bottom: 3rem;
    max-width: 720px;
}

.section-heading p {
    color: var(--brand-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    gap: .85rem;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.feature-list li {
    align-items: center;
    color: #374151;
    display: flex;
    gap: .7rem;
}

.feature-list i {
    color: var(--brand-green);
}

.visual-panel {
    position: relative;
}

.visual-panel > img {
    border-radius: 26px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, .16);
    display: block;
    width: 100%;
}

.floating-areas {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    bottom: -2rem;
    box-shadow: var(--shadow-soft);
    left: -1.4rem;
    max-width: 350px;
    padding: 1.3rem;
    position: absolute;
}

.floating-areas strong {
    color: var(--brand-muted);
    display: block;
    font-size: .82rem;
    letter-spacing: .05em;
    margin-bottom: .7rem;
    text-transform: uppercase;
}

.floating-areas span,
.study-badge {
    background: var(--brand-soft);
    border-radius: 999px;
    color: var(--brand-green);
    display: inline-flex;
    font-size: .76rem;
    font-weight: 800;
    margin: .15rem;
    padding: .3rem .62rem;
}

.oab-section {
    background-image: linear-gradient(135deg, rgba(4, 40, 29, .97), rgba(13, 122, 95, .9)), url("../img/hero-legal.svg");
    background-position: center;
    background-size: cover;
    color: #fff;
}

.oab-section .section-heading h2,
.oab-section .section-heading p {
    color: #fff;
}

.oab-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    color: #fff;
    height: 100%;
    padding: 2rem;
}

.oab-card.is-active {
    background: var(--brand-green);
}

.oab-card p {
    color: rgba(255, 255, 255, .78);
    min-height: 84px;
}

.free-badge {
    background: rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #d1fae5;
    font-size: .75rem;
    font-weight: 900;
    padding: .28rem .65rem;
}

.study-card {
    height: 100%;
    overflow: hidden;
}

.study-card > img {
    height: 190px;
    object-fit: cover;
    width: 100%;
}

.study-card__body {
    padding: 1.6rem;
}

.study-card--purple .icon-box,
.study-card--purple .study-badge {
    background: #ede9fe;
    color: #7c3aed;
}

.study-card--amber .icon-box,
.study-card--amber .study-badge {
    background: #fff7ed;
    color: #b45309;
}

.study-card--green .icon-box,
.study-card--green .study-badge {
    background: #dcfce7;
    color: #15803d;
}

.study-card--blue .icon-box,
.study-card--blue .study-badge {
    background: #e0f2fe;
    color: #0369a1;
}

.metrics-row {
    margin-bottom: 4rem;
}

.metrics-row strong {
    color: var(--brand-green);
    font-size: clamp(2.3rem, 5vw, 3.6rem);
}

.metrics-row span {
    color: var(--brand-muted);
}

.section-divider {
    background: linear-gradient(90deg, transparent, var(--brand-border), transparent);
    height: 1px;
    margin: 1rem 0 4rem;
}

.testimonial-card {
    height: 100%;
    padding: 1.8rem;
}

.testimonial-card > i {
    color: rgba(13, 122, 95, .25);
    font-size: 2.2rem;
}

.avatar-initials {
    align-items: center;
    background: var(--brand-green);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.testimonial-card small {
    color: var(--brand-muted);
    display: block;
}

.stars {
    color: var(--brand-amber);
    font-size: .8rem;
    white-space: nowrap;
}

.newsletter-band {
    background: #ecfdf7;
    padding: 6rem 0;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--brand-green), #0f8f70);
    border-radius: 28px;
    color: #fff;
    overflow: hidden;
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
}

.newsletter-card::after {
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
    height: 220px;
    position: absolute;
    right: -50px;
    top: -60px;
    width: 220px;
}

.newsletter-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 1.4rem 0 1rem;
}

.newsletter-card p {
    color: rgba(255, 255, 255, .82);
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.newsletter-links {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-links .btn {
    border-radius: 16px;
    font-weight: 800;
    min-width: 180px;
}

.newsletter-card small {
    color: rgba(255, 255, 255, .72);
}

.page-title {
    background: linear-gradient(135deg, #eefbf7 0%, #fff 72%);
    border-bottom: 1px solid var(--brand-border);
    padding: 5rem 0 4rem;
}

.page-title h1 {
    margin: 1rem 0 .7rem;
}

.page-title p {
    color: var(--brand-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 760px;
}

.page-content {
    line-height: 1.85;
    padding: clamp(1.4rem, 3vw, 2.6rem);
}

.page-content img {
    height: auto;
    max-width: 100%;
}

.dictionary-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) 330px;
}

.dictionary-box,
.dictionary-side {
    padding: 1.45rem;
}

.dictionary-box h2,
.dictionary-side h2,
.dictionary-item h3 {
    color: var(--brand-green-dark);
    font-weight: 900;
}

.dictionary-content {
    line-height: 1.78;
}

.dictionary-item {
    border-bottom: 1px solid var(--brand-border);
    padding: 1rem 0;
}

.dictionary-item:first-child {
    padding-top: 0;
}

.dictionary-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.dictionary-item h3 {
    font-size: 1.1rem;
}

.dictionary-related {
    background: var(--brand-soft);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    padding: 1rem;
}

.badge-link {
    background: #fff;
    border: 1px solid #ccefe4;
    border-radius: 999px;
    display: inline-block;
    font-weight: 800;
    padding: .35rem .7rem;
}

.dictionary-search {
    position: relative;
}

.dictionary-search .form-control {
    border-radius: 14px;
    min-height: 54px;
}

.dictionary-autocomplete {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    display: none;
    left: 0;
    max-height: 320px;
    overflow: auto;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    z-index: 20;
}

.dictionary-autocomplete-item {
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    color: var(--brand-ink);
    display: block;
    padding: .75rem .9rem;
    text-align: left;
    width: 100%;
}

.dictionary-autocomplete-item:hover,
.dictionary-autocomplete-item:focus,
.dictionary-autocomplete-item.active {
    background: var(--brand-soft);
}

.dictionary-letters {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.dictionary-letters a {
    align-items: center;
    background: var(--brand-soft);
    border-radius: 8px;
    color: var(--brand-green);
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    padding: 0 .55rem;
}

.dictionary-letters a.active,
.dictionary-letters a:hover {
    background: var(--brand-green);
    color: #fff;
}

/*.pagination .page-link {
    color: var(--brand-green);
}*/

.pagination .active .page-link {
    background: var(--brand-green);
    border-color: var(--brand-green);
}

.site-footer {
    background: var(--brand-green-deep);
    color: rgba(255, 255, 255, .72);
}

.footer-main {
    padding: 5rem 0;
}


.site-footer .brand-text strong {
    color: #fff;
}

.site-footer .brand-text small,
.footer-copy {
    color: rgba(255, 255, 255, .66);
}

.footer-copy {
    line-height: 1.75;
    margin: 1.5rem 0;
    max-width: 370px;
}

.social-row {
    display: flex;
    gap: .75rem;
}

.social-row a {
    align-items: center;
    background: rgba(255, 255, 255, .09);
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.site-footer h2 {
    color: var(--brand-mint);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: .7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, .68);
}

.site-footer a:hover {
    color: var(--brand-mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    padding: 1.4rem 0;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .header-actions {
        justify-content: flex-start;
        margin-top: .6rem;
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero__content {
        padding: 4.5rem 0 7rem;
    }

    .dictionary-layout {
        grid-template-columns: 1fr;
    }

    .floating-areas {
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        max-width: none;
        position: static;
    }
}

@media (max-width: 575.98px) {
    .hero-search,
    .newsletter-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-search i {
        display: none;
    }

    .hero-search input {
        padding: 0 1rem;
    }

    .hero-search button,
    .newsletter-form button {
        min-height: 52px;
    }

    .section-pad,
    .newsletter-band {
        padding: 4rem 0;
    }

    .quick-access {
        margin-top: -3.5rem;
    }
}

.template-sidebar,
.template-card,
.template-content-block {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
}

.template-sidebar {
    padding: 1rem;
}

.template-cat-list li + li {
    margin-top: .3rem;
}

.template-cat-list a {
    border-radius: 10px;
    color: #334155;
    display: flex;
    justify-content: space-between;
    padding: .5rem .65rem;
}

.template-cat-list a.active,
.template-cat-list a:hover {
    background: var(--brand-soft);
    color: var(--brand-green);
}

.template-card {
    padding: 1rem;
}

.template-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
}

.template-meta {
    color: var(--brand-green);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .03em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.template-content-block {
    margin-bottom: .9rem;
    padding: 1rem;
}

/* Mapas mentais */
.mind-map-card {
    display: flex;
    flex-direction: column;
    min-height: 230px;
}

.mind-map-pdf-wrap {
    background: #1f2937;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 70vh;
}

.mind-map-pdf-wrap iframe {
    background: #fff;
    border: 0;
    display: block;
    min-height: 70vh;
    width: 100%;
}

/* Admin */
.admin-body {
    background: #f5faf8;
}

.admin-main {
    min-height: calc(100vh - 72px);
}

.admin-login-main {
    align-items: center;
    background: radial-gradient(circle at 20% 20%, rgba(110, 231, 199, .25), transparent 28%), linear-gradient(135deg, #effdf8, #ffffff 45%, #e9fbf6);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.admin-login-card,
.admin-card,
.admin-stat-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.admin-login-card {
    max-width: 430px;
    padding: 2rem;
    width: 100%;
}

.admin-card {
    padding: 1.25rem;
}

.admin-page-title {
    margin-bottom: 1.25rem;
}

.admin-page-title h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    margin: .35rem 0 .25rem;
}

.admin-stat-card {
    color: var(--brand-ink);
    display: grid;
    gap: .4rem;
    min-height: 150px;
    padding: 1.3rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.admin-stat-card:hover {
    box-shadow: var(--shadow-soft);
    color: var(--brand-ink);
    transform: translateY(-2px);
}

.admin-stat-card i {
    align-items: center;
    background: var(--brand-soft);
    border-radius: 14px;
    color: var(--brand-green);
    display: inline-flex;
    font-size: 1.3rem;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.admin-stat-card strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.admin-stat-card span {
    color: var(--brand-muted);
}

.fw-black {
    font-weight: 900;
}

/* Student area + OAB simulations */
.student-auth-section {
    background: linear-gradient(180deg, #f0fbf7 0%, #ffffff 100%);
    min-height: 70vh;
}

.inner-hero {
    background: linear-gradient(135deg, #073b2f 0%, #0b8065 100%);
    color: #fff;
    padding: 5rem 0;
}

.compact-hero {
    padding: 4rem 0;
}

.inner-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin: .85rem 0 .75rem;
}

.inner-hero p {
    color: rgba(255, 255, 255, .84);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 820px;
}

.section-badge {
    align-items: center;
    background: rgba(13, 122, 95, .1);
    border: 1px solid rgba(13, 122, 95, .18);
    border-radius: 999px;
    color: var(--brand-green);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    gap: .45rem;
    padding: .38rem .7rem;
}

.inner-hero .section-badge,
.result-card .section-badge {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .24);
    color: #c9fff0;
}

.oab-questions-list {
    margin: 0 auto;
    max-width: 1160px;
}

.oab-question-block {
    background: transparent;
}

.oab-question-meta {
    background: #eef1f3;
    color: #244d6d;
    font-size: .95rem;
    line-height: 1.55;
    padding: 11px 16px;
}

.oab-question-meta strong {
    color: #183b57;
    font-weight: 900;
}

.oab-question-meta .meta-separator {
    color: #44677f;
    margin: 0 2px;
}

.oab-question-body {
    background: #fff;
    display: flex;
    gap: 20px;
    padding: 18px 16px 24px;
}

.oab-question-number {
    align-items: center;
    background: #255f80;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 40px;
    font-size: 1.15rem;
    font-weight: 900;
    height: 40px;
    justify-content: center;
    line-height: 1;
    margin-top: 2px;
    width: 40px;
}

.oab-question-content {
    flex: 1 1 auto;
    min-width: 0;
}

.oab-question-content .question-text {
    color: #071424;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.65;
}

.oab-letter {
    align-items: center;
    background: #f20b0b;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 1.12rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    text-transform: lowercase;
    width: 38px;
}

.oab-floating-timer {
    background: #fff9be;
    border: 1px solid #f0de73;
    border-top: 4px solid #e20000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    color: #533300;
    padding: 10px 12px 12px;
    position: fixed;
    right: 22px;
    text-align: center;
    top: 110px;
    width: 188px;
    z-index: 1030;
}

.oab-floating-timer .oab-timer-icon {
    color: #183b57;
    font-size: 1.35rem;
    line-height: 1;
}

.oab-floating-timer strong {
    color: #071424;
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 4px;
}

.oab-floating-timer span {
    color: #7b6734;
    display: block;
    font-size: .83rem;
    line-height: 1.35;
}

.oab-floating-timer .btn-danger {
    background: #8f0000;
    border-color: #8f0000;
    box-shadow: 0 2px 0 rgba(130, 0, 0, .35);
}

.oab-fundamentacao {
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    padding: 14px 16px;
}

.oab-fundamentacao strong {
    color: #063f32;
    display: block;
    margin-bottom: 6px;
}

@media (max-width: 1399px) {
    .oab-floating-timer {
        margin-bottom: 18px;
        margin-left: auto;
        max-width: 360px;
        position: sticky;
        right: auto;
        top: 76px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .oab-question-body {
        gap: 12px;
        padding: 16px 12px 22px;
    }

    .oab-question-meta {
        font-size: .86rem;
        padding: 10px 12px;
    }

    .oab-question-number {
        flex-basis: 34px;
        height: 34px;
        width: 34px;
    }
}

.auth-card,
.content-card,
.question-card,
.result-card {
    background: #fff;
    border: 1px solid #dfe8e4;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(12, 67, 53, .06);
    padding: 28px;
}
.vmb-form .form-control {
    border-radius: 14px;
    border-color: #d2ddd8;
    min-height: 46px;
}
.vmb-form .form-control:focus {
    border-color: #0b8065;
    box-shadow: 0 0 0 .2rem rgba(11, 128, 101, .12);
}

.student-area-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid #dfe8e4;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(12, 67, 53, .05);
    padding: 10px;
}
.student-area-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    padding: 10px 14px;
    text-decoration: none;
    color: #172033;
    font-weight: 800;
    transition: .2s ease;
}
.student-area-nav-link i {
    color: #0b8065;
}
.student-area-nav-link:hover,
.student-area-nav-link.active {
    color: #006d57;
    background: #e7f8f2;
}
.student-area-nav-link.active {
    box-shadow: inset 0 0 0 1px rgba(11, 128, 101, .18);
}

.student-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.student-action-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    color: #172033;
    background: #fff;
    border: 1px solid #dfe8e4;
    border-radius: 20px;
    padding: 22px;
    transition: .2s ease;
}
.student-action-card:hover {
    transform: translateY(-2px);
    color: #0b8065;
    box-shadow: 0 18px 40px rgba(12, 67, 53, .08);
}
.student-action-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: #0b8065;
    background: #e7f8f2;
    font-size: 1.3rem;
}
.student-action-card span {
    color: #607083;
    font-size: .92rem;
}
.student-action-card.muted {
    opacity: .82;
}
.student-history-list {
    display: grid;
    gap: 12px;
}
.student-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #edf2f0;
    background: #fbfefd;
    border-radius: 16px;
    padding: 12px 14px;
}
.student-history-item small {
    display: block;
    color: #607083;
}
.student-history-item span {
    color: #0b8065;
    font-weight: 800;
}
.oab-sim-section {
    background: #f7faf9;
}
.result-card {
    background: linear-gradient(135deg, #0b8065 0%, #063f32 100%);
    color: #fff;
}
.result-card .section-badge {
    background: rgba(255,255,255,.12);
    color: #c9fff0;
    border-color: rgba(255,255,255,.25);
}
.result-card p {
    color: rgba(255,255,255,.86);
}
.question-card {
    padding: 24px;
}
.question-number {
    color: #0b8065;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .78rem;
    margin-bottom: 10px;
}
.question-text {
    color: #172033;
    font-size: 1.02rem;
    line-height: 1.65;
}
.alternatives-list {
    display: grid;
    gap: 10px;
}
.alternative-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid #e1ebe7;
    background: #fbfefd;
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
}
.alternative-item:hover {
    border-color: #0b8065;
    background: #f1fbf7;
}
.alternative-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e7f8f2;
    color: #0b8065;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    flex: 0 0 auto;
}
.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}
.check-list li::before {
    content: '✓';
    color: #0b8065;
    font-weight: 900;
    margin-right: 8px;
}
@media (max-width: 991px) {
    .student-actions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .student-actions-grid {
        grid-template-columns: 1fr;
    }
    .auth-card,
    .content-card,
    .question-card,
    .result-card {
        padding: 20px;
    }
}

/* Leis / Vade Mecum */
.laws-hero {
    background: linear-gradient(135deg, #073b2f 0%, #0b8065 100%);
    color: #fff;
}
.laws-hero p {
    color: rgba(255,255,255,.84);
    max-width: 760px;
}
.laws-section {
    background: #f7faf9;
}
.law-card {
    display: flex;
    flex-direction: column;
}
.law-card h3 {
    font-size: 1.16rem;
    line-height: 1.35;
    color: #152336;
}
.law-apelido {
    color: #0b8065;
    font-weight: 800;
    margin-bottom: .5rem;
}
.law-sidebar {
    top: 92px;
}
.law-sidebar h2,
.law-text-card h2 {
    font-size: 1.35rem;
}
.law-meta-list {
    display: grid;
    gap: 10px;
    margin: 0;
}
.law-meta-list dt {
    color: #607083;
    font-size: .82rem;
    margin: 0;
}
.law-meta-list dd {
    margin: -8px 0 0;
    color: #172033;
    font-weight: 800;
}
.law-official-text {
    color: #172033;
    line-height: 1.76;
    font-size: 1rem;
}
.law-official-text p,
.law-official-text div {
    margin-bottom: .85rem;
}
.law-official-text h1,
.law-official-text h2,
.law-official-text h3,
.law-official-text h4 {
    color: #0f3d2e;
    margin-top: 1.5rem;
    margin-bottom: .85rem;
    font-weight: 900;
}
.law-official-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
.law-official-text td,
.law-official-text th {
    border: 1px solid #dce8e3;
    padding: 8px;
    vertical-align: top;
}
.law-related-item {
    border-left: 4px solid #0b8065;
    background: #f8fbfa;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
}
.admin-law-preview {
    max-height: 520px;
    overflow: auto;
    border: 1px solid #e1ebe7;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
}
@media (max-width: 991px) {
    .law-sidebar {
        position: static !important;
    }
}

/* Texto de leis grandes por dispositivos */
.law-article-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-height: 280px;
    overflow: auto;
    padding-right: 4px;
}
.law-article-index a {
    border: 1px solid #dce8e3;
    border-radius: 999px;
    padding: 5px 8px;
    color: #0b8065;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 800;
    text-align: center;
    background: #fff;
}
.law-article-index a:hover {
    background: #eaf7f3;
}
.law-device-search {
    border: 1px solid #e1ebe7;
    background: #f8fbfa;
    border-radius: 16px;
    padding: 14px;
}
.law-device-item {
    border: 1px solid #e1ebe7;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
    background: #fff;
}
.law-device-label {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #eaf7f3;
    color: #0b8065;
    font-weight: 900;
    font-size: .78rem;
    padding: 5px 10px;
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .law-article-index {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Ajustes Vade Mecum - busca e leis grandes */
.laws-hero .hero-search {
    grid-template-columns: 52px minmax(0, 1fr) 132px;
    width: min(100%, 680px);
}
.laws-hero .hero-search input {
    width: 100%;
}
.laws-hero .hero-search button {
    min-width: 132px;
}
.law-sidebar {
    max-height: calc(100vh - 110px);
    overflow: auto;
}
.law-sidebar h3 {
    font-size: 1.1rem;
}
.law-ementa summary {
    color: #172033;
    cursor: pointer;
    font-family: Sora, Inter, system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
}
.law-article-index {
    max-height: 46vh;
}
@media (max-width: 991px) {
    .law-sidebar {
        max-height: none;
        overflow: visible;
    }
}
@media (max-width: 575.98px) {
    .laws-hero .hero-search {
        grid-template-columns: 1fr;
    }
    .laws-hero .hero-search button {
        width: 100%;
    }
}


/* Ajuste: sem rolagem interna na coluna de dados/indice da lei */
.law-sidebar {
    position: static !important;
    top: auto;
    max-height: none !important;
    overflow: visible !important;
}
.law-article-index {
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0;
}

/* Ajuste: página /leis no mesmo padrão das páginas institucionais */
.laws-section {
    background: var(--brand-bg);
}
.laws-search-card {
    border: 1px solid var(--brand-border);
    margin-top: -1.8rem;
    position: relative;
    z-index: 2;
}
.laws-search-card .section-title {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}
.laws-search-form {
    align-items: center;
    background: #fff;
    border: 1px solid #dce8e3;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 140px;
    overflow: hidden;
    width: min(100%, 760px);
}
.laws-search-form i {
    color: #607083;
    font-size: 1.1rem;
    justify-self: center;
}
.laws-search-form input {
    border: 0;
    min-height: 58px;
    outline: none;
    padding: 0 1rem 0 0;
    width: 100%;
}
.laws-search-form button {
    align-self: stretch;
    background: var(--brand-green);
    border: 0;
    color: #fff;
    font-weight: 900;
    padding: 0 1.2rem;
}
.laws-search-form button:hover {
    background: var(--brand-green-dark);
}
@media (max-width: 575.98px) {
    .laws-search-card {
        margin-top: -1rem;
    }
    .laws-search-form {
        grid-template-columns: 46px minmax(0, 1fr);
    }
    .laws-search-form button {
        grid-column: 1 / -1;
        min-height: 52px;
    }
}

/* Ajuste: detalhe da lei no mesmo padrão das páginas institucionais */
.law-page-title {
    background: linear-gradient(135deg, #eefbf7 0%, #fff 72%);
    border-bottom: 1px solid var(--brand-border);
    color: var(--brand-ink);
}
.law-page-title h1 {
    max-width: 980px;
}
.law-page-title p {
    max-width: 760px;
}
.law-title-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}
.law-title-actions .btn {
    border-radius: 999px;
    font-weight: 800;
    padding: .72rem 1.1rem;
}
.law-detail-section {
    background: var(--brand-bg);
}
.law-detail-section .content-card {
    border: 1px solid var(--brand-border);
}
.law-text-card {
    position: relative;
}
.law-device-search .btn {
    min-height: 38px;
}
@media (max-width: 575.98px) {
    .law-title-actions .btn {
        justify-content: center;
        width: 100%;
    }
}

/* Ajuste Vade Mecum: divisores estruturais da lei sem etiqueta/pílula */
.law-device-item.law-device-heading {
    text-align: center;
    background: #fbfefd;
    padding-top: 20px;
    padding-bottom: 20px;
}
.law-device-item.law-device-heading .law-official-text h1,
.law-device-item.law-device-heading .law-official-text h2,
.law-device-item.law-device-heading .law-official-text h3,
.law-device-item.law-device-heading .law-official-text h4,
.law-device-item.law-device-heading .law-official-text p {
    margin: 0;
    color: #0f3d2e;
    font-family: Sora, Inter, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .01em;
}

/* Ajuste Vade Mecum: busca por palavra-chave em dispositivos da lei */
.law-search-highlight {
    background: #fff3b0;
    border-radius: 4px;
    color: inherit;
    padding: 0 .12em;
}
.law-search-highlight strong {
    font-weight: 900;
}
.law-device-search .form-text {
    color: #607083;
    font-size: .82rem;
}

/* Leis - card inteiro clicável */
.law-card-link {
    color: inherit;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.law-card-link:hover {
    border-color: rgba(11, 128, 101, .45);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
    color: inherit;
    transform: translateY(-2px);
}
.law-card-link:hover h3,
.law-card-link:focus h3 {
    color: var(--brand-green);
}
.law-card-button {
    pointer-events: none;
}

/* Súmulas */
.sumula-group-title {
    align-items: center;
    border-bottom: 1px solid var(--brand-border);
    display: flex;
    gap: .75rem;
    margin: 0 0 1rem;
    padding-bottom: .5rem;
}
.sumula-group-title h2 {
    color: var(--brand-ink);
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0;
}
.sumula-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.sumula-card-top {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
.sumula-card h3 {
    color: var(--brand-ink);
    font-size: 1.12rem;
    font-weight: 900;
    margin: 0 0 .5rem;
}
.sumula-status {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    color: #9a3412;
    flex: 0 0 auto;
    font-size: .75rem;
    font-weight: 800;
    padding: .25rem .6rem;
    text-transform: uppercase;
}
.sumula-subtitle {
    color: #475569;
    font-weight: 700;
}
.sumula-text {
    color: #243142;
    line-height: 1.65;
}
.sumula-text p:last-child {
    margin-bottom: 0;
}
.sumula-references {
    background: #f8fafc;
    border-radius: 12px;
    padding: .75rem .9rem;
}
.sumula-references summary {
    color: var(--brand-green);
    cursor: pointer;
    font-weight: 800;
}
@media (max-width: 575.98px) {
    .sumula-card-top {
        display: block;
    }
    .sumula-status {
        display: inline-flex;
        margin-bottom: .5rem;
    }
}

/* Índices */
.indices-page-title p {
    max-width: 760px;
}
.indice-home-card,
.indice-detail-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 1.4rem;
}
.indice-home-card-title {
    align-items: center;
    border-bottom: 1px solid var(--brand-border);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: .8rem;
}
.indice-home-card-title h2 {
    color: var(--brand-ink);
    font-size: 1rem;
    font-weight: 900;
    margin: 0;
}
.indice-home-card-title span,
.indice-remissive-title span {
    align-items: center;
    background: var(--brand-soft);
    border: 1px solid #c8f7e6;
    border-radius: 999px;
    color: var(--brand-green);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    justify-content: center;
    min-width: 2rem;
    padding: .18rem .55rem;
}
.indice-law-list li + li {
    margin-top: .42rem;
}
.indice-law-list a {
    border-radius: 10px;
    display: block;
    font-weight: 700;
    padding: .2rem 0;
}
.indice-law-list a:hover {
    color: var(--brand-green-dark);
    text-decoration: underline;
}
.indice-search-form {
    min-width: min(100%, 420px);
}
.indice-entry-card {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.indice-entry-card h3,
.indice-entry-card h4 {
    color: var(--brand-ink);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0 0 .7rem;
}
.indice-entry-card h4 {
    font-size: 1rem;
}
.indice-entry-content {
    color: #243142;
    line-height: 1.65;
}
.indice-entry-content p:last-child {
    margin-bottom: 0;
}
.indice-remissive-title {
    align-items: center;
    border-bottom: 1px solid var(--brand-border);
    display: flex;
    gap: .75rem;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: .65rem;
}
.indice-remissive-title h3 {
    color: var(--brand-green-dark);
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0;
}
@media (max-width: 575.98px) {
    .indice-home-card,
    .indice-detail-card {
        padding: 1rem;
    }
    .indice-search-form .input-group {
        display: block;
    }
    .indice-search-form .form-control,
    .indice-search-form .btn {
        border-radius: 14px !important;
        width: 100%;
    }
    .indice-search-form .btn {
        margin-top: .5rem;
    }
}

/* Ajustes da tela de detalhes dos indices */
.indices-detail-layout .content-card {
    height: auto;
}
.indice-sidebar {
    position: sticky;
    top: 1rem;
}
.indice-sidebar h2 {
    color: var(--brand-ink);
    font-size: 1rem;
    font-weight: 900;
    margin: 0 0 .25rem;
}
.indice-sidebar-actions {
    border-bottom: 1px solid var(--brand-border);
    display: grid;
    gap: .35rem;
    margin-bottom: .75rem;
    padding-bottom: .75rem;
}
.indice-sidebar-actions a {
    font-size: .88rem;
    font-weight: 800;
}
.indice-sidebar-list {
    display: grid;
    gap: .35rem;
    max-height: 68vh;
    overflow: auto;
    padding-right: .2rem;
}
.indice-sidebar-link,
.indice-sidebar-sublist a {
    align-items: flex-start;
    border-radius: 12px;
    color: var(--brand-ink);
    display: flex;
    gap: .5rem;
    justify-content: space-between;
    line-height: 1.3;
    padding: .5rem .55rem;
}
.indice-sidebar-link:hover,
.indice-sidebar-sublist a:hover {
    background: var(--brand-soft);
    color: var(--brand-green-dark);
    text-decoration: none;
}
.indice-sidebar-link span,
.indice-sidebar-sublist span {
    min-width: 0;
}
.indice-sidebar-link em,
.indice-sidebar-sublist em {
    background: var(--brand-soft);
    border-radius: 999px;
    color: var(--brand-green-dark);
    flex: 0 0 auto;
    font-size: .72rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    padding: .25rem .45rem;
}
.indice-sidebar-sublist {
    border-left: 2px solid var(--brand-border);
    display: grid;
    gap: .2rem;
    margin: -.1rem 0 .35rem .6rem;
    padding-left: .5rem;
}
.indice-sidebar-sublist a {
    font-size: .86rem;
    padding: .35rem .45rem;
}
.indice-entry-card {
    scroll-margin-top: 1rem;
}
.indice-entry-meta {
    color: var(--brand-green-dark);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}
.indice-linked-articles {
    display: grid;
    gap: .85rem;
}
.indice-article-card {
    background: #f8fafc;
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    padding: .9rem;
}
.indice-article-card h5 {
    color: var(--brand-ink);
    font-size: .95rem;
    font-weight: 900;
    margin: .35rem 0 .6rem;
}
.indice-article-card .law-official-text p:last-child {
    margin-bottom: 0;
}
.indice-article-missing {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    color: #7c2d12;
    font-size: .92rem;
    padding: .75rem .9rem;
}
@media (max-width: 991.98px) {
    .indice-sidebar {
        position: static;
    }
    .indice-sidebar-list {
        max-height: 320px;
    }
}

/* Índices v3: exibe somente o item selecionado na lateral */
.indice-hidden {
    display: none !important;
}
.indice-select-placeholder {
    background: #f8fbfa;
    border: 1px dashed var(--brand-border);
    border-radius: var(--radius-md);
    color: #243142;
    padding: 1.25rem;
}
.indice-select-placeholder h3 {
    color: var(--brand-ink);
    font-size: 1.15rem;
    font-weight: 900;
    margin: .35rem 0 .35rem;
}
.indice-select-placeholder p {
    margin: 0;
}
.indice-sidebar-link.is-active,
.indice-sidebar-sublist a.is-active {
    background: var(--brand-soft);
    color: var(--brand-green-dark);
    font-weight: 900;
}
.indice-sidebar-link.is-active em,
.indice-sidebar-sublist a.is-active em {
    background: #fff;
}

.cookie-banner {
    align-items: center;
    background: rgba(17, 24, 39, .96);
    border-top: 1px solid rgba(255, 255, 255, .08);
    bottom: 0;
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    left: 0;
    padding: 1rem clamp(1rem, 4vw, 3rem);
    position: fixed;
    right: 0;
    z-index: 2000;
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
    display: none !important;
}
.cookie-banner__text {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    line-height: 1.5;
}
.cookie-banner__text a {
    color: #9ff5dd;
    font-weight: 800;
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
    min-width: max-content;
}
.cookie-modal {
    align-items: center;
    background: rgba(15, 23, 42, .58);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: 2010;
}
.cookie-modal__box {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
    max-width: 640px;
    padding: clamp(1.25rem, 3vw, 2rem);
    width: 100%;
}
.cookie-modal__box h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: .75rem;
}
.cookie-modal__box p {
    color: var(--brand-muted);
}
.cookie-option {
    align-items: center;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: .75rem;
    padding: 1rem;
}
.cookie-option span:not(.badge) {
    color: var(--brand-muted);
    display: block;
    font-size: .9rem;
}
.cookie-option input {
    height: 22px;
    width: 22px;
}
@media (max-width: 767.98px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }
    .cookie-banner__actions {
        justify-content: stretch;
        min-width: 0;
    }
    .cookie-banner__actions .btn {
        flex: 1 1 auto;
    }
}

/* Dicionario juridico nos artigos da lei */
.vmb-glossario-termo {
    border-bottom: 1px dashed rgb(11 28 235);
    cursor: help;
    font-weight: inherit;
    text-decoration: none;
}
.vmb-glossario-termo:focus {
    border-radius: 4px;
    outline: 2px solid rgba(11, 28, 235, .28);
    outline-offset: 2px;
}
.vmb-glossario-popover {
    max-width: min(560px, 92vw);
    pointer-events: auto;
}
.vmb-glossario-popover .popover-body {
    max-height: min(70vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: auto;
    white-space: normal;
}
.vmb-glossario-popover-content p {
    margin: 0 0 .75rem;
}
.vmb-glossario-popover-content p:last-child {
    margin-bottom: 0;
}
