:root {
    --nbo-red: #da1212;
    --nbo-red-dark: #9d0808;
    --nbo-red-soft: #fff1f1;
    --nbo-ink: #111318;
    --nbo-text: #363941;
    --nbo-muted: #757b86;
    --nbo-line: #e5e7eb;
    --nbo-surface: #f6f7f9;
    --nbo-white: #fff;
    --nbo-radius: 12px;
    --nbo-shadow: 0 12px 34px rgba(20, 24, 32, .09);
    --nbo-container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--nbo-white);
    color: var(--nbo-text);
    font-family: Roboto, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-is-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--nbo-red);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--nbo-red-dark);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #ffb8b8;
    outline-offset: 3px;
}

.nbo-container {
    width: min(calc(100% - 40px), var(--nbo-container));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 7px;
    background: #000;
    color: #fff;
    transform: translateY(-160%);
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

.nbo-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: currentColor;
    vertical-align: -.125em;
}

/* Cabeçalho */
.brand-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 1) 0 22%, rgba(247, 247, 247, .98) 50%, rgba(221, 223, 226, .96) 100%);
}

.brand-band::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .45;
    background-image: linear-gradient(90deg, transparent 49.8%, rgba(0, 0, 0, .035) 50%, transparent 50.2%);
    background-size: 34px 34px;
}

.brand-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 178px;
    align-items: center;
    justify-content: center;
    padding-block: 20px;
}

.custom-logo-link,
.nbo-fallback-logo {
    display: block;
    width: min(330px, 70vw);
}

.custom-logo,
.nbo-fallback-logo img {
    width: 100%;
    max-height: 145px;
    object-fit: contain;
}

.main-navigation {
    position: relative;
    z-index: 100;
    border-top: 3px solid var(--nbo-red-dark);
    background: linear-gradient(100deg, #c90d0d 0%, var(--nbo-red) 48%, #b70707 100%);
    box-shadow: 0 5px 20px rgba(126, 0, 0, .2);
}

.nav-inner {
    display: flex;
    min-height: 59px;
    align-items: stretch;
}

.home-button,
.search-toggle,
.menu-toggle {
    display: inline-flex;
    border: 0;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.home-button {
    width: 58px;
    font-size: 25px;
}

.home-button:hover,
.search-toggle:hover,
.menu-toggle:hover {
    background: rgba(0, 0, 0, .13);
    color: #fff;
}

.primary-menu-wrap {
    flex: 1 1 auto;
}

.primary-menu,
.primary-menu-wrap > .menu {
    display: flex;
    min-height: 59px;
    align-items: stretch;
    gap: 1px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-menu li,
.primary-menu-wrap > .menu li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.primary-menu a,
.primary-menu-wrap > .menu a {
    display: flex;
    align-items: center;
    padding: 0 17px;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .025em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu-wrap > .menu a:hover,
.primary-menu-wrap > .menu a:focus {
    background: rgba(0, 0, 0, .13);
    color: #fff;
}

.primary-menu .sub-menu {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    display: none;
    width: 230px;
    padding: 7px;
    margin: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
    box-shadow: var(--nbo-shadow);
    list-style: none;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    display: block;
}

.primary-menu .sub-menu li {
    display: block;
}

.primary-menu .sub-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 5px;
    color: var(--nbo-ink);
    font-size: 13px;
    white-space: normal;
}

.primary-menu .sub-menu a:hover {
    background: var(--nbo-red-soft);
    color: var(--nbo-red-dark);
}

.nav-actions {
    display: flex;
    margin-left: auto;
    align-items: stretch;
}

.nbo-socials {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nbo-social {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    transition: transform .2s ease, background .2s ease;
}

.nbo-social:hover {
    color: #fff;
    transform: translateY(-2px);
}

.header-socials {
    padding-inline: 8px;
}

.header-socials .nbo-social {
    background: rgba(255, 255, 255, .12);
}

.header-socials .nbo-social:hover {
    background: rgba(255, 255, 255, .25);
}

.search-toggle {
    width: 54px;
    font-size: 22px;
}

.menu-toggle {
    display: none;
    gap: 8px;
    padding: 0 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-toggle .nbo-icon {
    font-size: 23px;
}

.menu-close-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
    display: inline-flex;
}

.header-search {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: #a80707;
}

.header-search[hidden] {
    display: none;
}

.search-form {
    display: flex;
    width: 100%;
    max-width: 700px;
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    min-height: 48px;
    padding: 11px 16px;
    border: 1px solid var(--nbo-line);
    border-radius: 8px 0 0 8px;
    background: #fff;
    color: var(--nbo-ink);
}

.search-submit {
    width: 54px;
    border: 0;
    border-radius: 0 8px 8px 0;
    background: var(--nbo-ink);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.header-search .search-form {
    margin-left: auto;
}

.header-banner {
    padding-block: 18px 0;
}

.header-banner .widget,
.content-banner .widget {
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.header-banner a,
.content-banner a,
.header-banner picture,
.content-banner picture {
    display: inline-block;
    max-width: 100%;
}

.header-banner img,
.content-banner img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none;
    margin-inline: auto;
    object-fit: contain;
}

/* Home */
.home-main {
    padding-block: 20px 62px;
}

.news-ticker {
    display: flex;
    min-height: 46px;
    margin-bottom: 14px;
    border: 1px solid #e3e5e8;
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
    background: #f7f7f8;
}

.ticker-label {
    position: relative;
    display: flex;
    min-width: 94px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    background: var(--nbo-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ticker-label::after {
    position: absolute;
    top: 50%;
    right: -8px;
    width: 16px;
    height: 16px;
    content: "";
    background: var(--nbo-red);
    transform: translateY(-50%) rotate(45deg);
}

.ticker-items {
    position: relative;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.ticker-item {
    position: absolute;
    inset: 0;
    display: flex;
    min-width: 0;
    padding: 0 18px 0 24px;
    align-items: center;
    gap: 12px;
    color: var(--nbo-ink);
    opacity: 0;
    transform: translateY(9px);
    transition: opacity .35s ease, transform .35s ease;
}

.ticker-item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-item time {
    color: var(--nbo-red);
    font-size: 12px;
    font-weight: 800;
}

.ticker-item span {
    overflow: hidden;
    font-size: 14px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(340px, 1.22fr);
    min-height: 470px;
    gap: 10px;
}

.featured-carousel {
    position: relative;
    min-height: 470px;
    border-radius: var(--nbo-radius);
    overflow: hidden;
    background: #24262b;
}

.featured-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .55s ease, visibility .55s ease;
}

.featured-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.featured-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #2d3036;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.featured-media::before {
    position: absolute;
    inset: 0;
    content: "";
    background: inherit;
    background-position: center;
    background-size: cover;
    transition: transform .7s cubic-bezier(.2, .65, .3, 1);
}

.featured-media:hover::before {
    transform: scale(1.045);
}

.featured-media.no-image::before,
.image-placeholder {
    background:
        linear-gradient(135deg, rgba(218, 18, 18, .82), rgba(35, 38, 45, .96)),
        radial-gradient(circle at 75% 15%, rgba(255, 255, 255, .26), transparent 30%);
}

.featured-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 16, .02) 20%, rgba(10, 12, 16, .35) 58%, rgba(10, 12, 16, .93) 100%);
}

.featured-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 31px;
    flex-direction: column;
    align-items: flex-start;
}

.category-badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 4px;
    background: var(--nbo-red);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    line-height: 1.2;
    text-transform: uppercase;
}

.featured-title {
    max-width: 94%;
    margin-top: 10px;
    color: #fff;
    font-size: clamp(25px, 3vw, 39px);
    font-weight: 850;
    letter-spacing: -.025em;
    line-height: 1.12;
    text-wrap: balance;
}

.featured-meta {
    display: flex;
    margin-top: 11px;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 550;
}

.featured-meta i,
.compact-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.featured-controls {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
}

.carousel-button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .53);
    color: #fff;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.carousel-button:hover {
    background: var(--nbo-red);
}

.carousel-dots {
    position: absolute;
    z-index: 6;
    right: 29px;
    bottom: 20px;
    display: flex;
    gap: 5px;
}

.carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .48);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.carousel-dots button.is-active {
    width: 20px;
    background: #fff;
}

.featured-side-grid {
    display: grid;
    min-height: 470px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.featured-side-card {
    min-height: 0;
    border-radius: var(--nbo-radius);
    overflow: hidden;
}

.featured-side-card .featured-content {
    padding: 17px;
}

.featured-side-card .category-badge {
    padding: 4px 7px;
    font-size: 9px;
}

.side-card-title {
    display: -webkit-box;
    margin-top: 7px;
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.27;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.featured-side-card .featured-meta {
    margin-top: 6px;
    font-size: 10px;
}

.home-content-grid {
    display: grid;
    margin-top: 42px;
    grid-template-columns: minmax(0, 2.15fr) minmax(285px, .85fr);
    align-items: start;
    gap: 35px;
}

.home-sections {
    min-width: 0;
}

.category-split + .category-split,
.category-grid-section {
    margin-top: 47px;
}

.section-heading {
    position: relative;
    display: flex;
    margin-bottom: 18px;
    border-bottom: 2px solid #1a1d22;
    align-items: center;
    justify-content: space-between;
}

.section-heading::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 68px;
    height: 4px;
    content: "";
    border-radius: 5px;
    background: var(--nbo-red);
}

.section-heading h2 {
    margin: 0;
    padding: 0 0 9px;
    color: var(--nbo-ink);
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-heading > a {
    display: inline-flex;
    padding-bottom: 8px;
    align-items: center;
    gap: 3px;
    color: var(--nbo-muted);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.section-heading > a .nbo-icon {
    font-size: 16px;
}

.category-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 1fr);
    gap: 24px;
}

.post-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 9px;
    background: #e6e7e9;
}

.post-image-link img,
.post-image-link .image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2, .65, .3, 1);
}

.post-image-link:hover img,
.post-image-link:focus img {
    transform: scale(1.045);
}

.category-lead .post-image-link {
    aspect-ratio: 16 / 9;
}

.category-lead h3 {
    margin: 12px 0 6px;
    font-size: clamp(21px, 2.1vw, 27px);
    letter-spacing: -.02em;
    line-height: 1.22;
}

.category-lead h3 a,
.category-side-item h3 a,
.news-card h3 a,
.archive-card h2 a,
.related-news h3 a,
.mini-post h3 a {
    color: var(--nbo-ink);
}

.category-lead h3 a:hover,
.category-side-item h3 a:hover,
.news-card h3 a:hover,
.archive-card h2 a:hover,
.related-news h3 a:hover,
.mini-post h3 a:hover {
    color: var(--nbo-red);
}

.compact-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nbo-muted);
    font-size: 12px;
    font-weight: 550;
}

.category-lead p {
    margin: 9px 0 0;
    color: #555a64;
    font-size: 14px;
    line-height: 1.55;
}

.category-side-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.category-side-item + .category-side-item {
    padding-top: 18px;
    border-top: 1px solid var(--nbo-line);
}

.category-side-item .post-image-link {
    aspect-ratio: 16 / 7.8;
}

.category-side-item h3 {
    display: -webkit-box;
    margin: 8px 0 5px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-sidebar,
.content-sidebar {
    min-width: 0;
}

.home-sidebar .widget,
.content-sidebar .widget {
    padding: 20px;
    margin: 0 0 22px;
    border: 1px solid #e6e8ec;
    border-radius: var(--nbo-radius);
    background: #fff;
    box-shadow: 0 8px 28px rgba(30, 35, 45, .055);
}

.widget-title {
    position: relative;
    padding-bottom: 9px;
    margin: 0 0 15px;
    border-bottom: 2px solid var(--nbo-ink);
    color: var(--nbo-ink);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.widget-title::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 4px;
    content: "";
    background: var(--nbo-red);
}

.widget ul {
    padding-left: 19px;
    margin: 0;
}

.widget li + li {
    margin-top: 7px;
}

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

.weather-card {
    position: relative;
    display: flex;
    min-height: 235px;
    padding: 23px;
    margin-bottom: 23px;
    border-radius: 20px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 78% 12%, rgba(255, 255, 255, .2), transparent 29%),
        linear-gradient(150deg, #151923 0%, #26344c 48%, #b50b0b 140%);
    box-shadow: 0 15px 35px rgba(19, 24, 35, .2);
    color: #fff;
    text-align: center;
}

.weather-card::after {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 115px;
    height: 115px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.weather-city {
    font-size: 18px;
    font-weight: 850;
}

.weather-status,
.weather-wind {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.weather-temperature {
    margin: 9px 0 2px;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1;
}

.weather-description {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
}

.mini-post-list {
    display: flex;
    flex-direction: column;
}

.mini-post {
    display: grid;
    padding-block: 12px;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
}

.mini-post:first-child {
    padding-top: 0;
}

.mini-post + .mini-post {
    border-top: 1px solid var(--nbo-line);
}

.mini-post-thumb {
    display: block;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7eb;
}

.mini-post-thumb img,
.mini-post-thumb .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-post h3 {
    display: -webkit-box;
    margin: 0 0 4px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mini-post time {
    color: var(--nbo-muted);
    font-size: 10px;
}

.content-banner {
    margin-block: 40px;
    text-align: center;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.news-card {
    min-width: 0;
}

.news-card .post-image-link {
    aspect-ratio: 16 / 10;
}

.news-card-body {
    padding-top: 10px;
}

.news-card h3 {
    display: -webkit-box;
    margin: 0 0 7px;
    overflow: hidden;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Listagens */
.listing-page,
.page-layout,
.single-layout {
    padding-block: 45px 70px;
}

.page-heading {
    max-width: 830px;
    margin-bottom: 29px;
}

.page-heading.compact {
    margin-bottom: 22px;
}

.eyebrow,
.contact-kicker {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--nbo-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.page-heading h1 {
    margin: 0;
    color: var(--nbo-ink);
    font-size: clamp(32px, 5vw, 53px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.archive-description {
    max-width: 720px;
    margin-top: 12px;
    color: var(--nbo-muted);
}

.archive-description p {
    margin: 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.archive-card {
    border: 1px solid var(--nbo-line);
    border-radius: var(--nbo-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(24, 28, 35, .055);
}

.archive-card-image {
    aspect-ratio: 16 / 10;
    border-radius: 0;
}

.archive-card-image .category-badge {
    position: absolute;
    z-index: 3;
    bottom: 11px;
    left: 11px;
}

.archive-card-body {
    padding: 18px 19px 20px;
}

.archive-card h2 {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.015em;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.archive-card p {
    margin: 10px 0 13px;
    color: #5e626b;
    font-size: 14px;
    line-height: 1.52;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--nbo-red);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.read-more .nbo-icon {
    font-size: 16px;
}

.navigation.pagination {
    margin-top: 38px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.nav-links .page-numbers {
    display: inline-flex;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--nbo-line);
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--nbo-ink);
    font-size: 13px;
    font-weight: 750;
}

.nav-links .current,
.nav-links a:hover {
    border-color: var(--nbo-red);
    background: var(--nbo-red);
    color: #fff;
}

.empty-state {
    padding: 55px;
    border-radius: var(--nbo-radius);
    background: var(--nbo-surface);
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 8px;
    color: var(--nbo-ink);
}

.empty-state .search-form {
    margin: 22px auto 0;
}

/* Post e páginas */
.single-layout,
.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(285px, .85fr);
    align-items: start;
    gap: 43px;
}

.single-main,
.page-main {
    min-width: 0;
}

.article-header {
    padding-bottom: 23px;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--nbo-line);
}

.article-category {
    display: inline-flex;
    padding: 5px 9px;
    margin-bottom: 11px;
    border-radius: 4px;
    background: var(--nbo-red);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.article-category:hover {
    background: var(--nbo-red-dark);
    color: #fff;
}

.article-header h1 {
    margin: 0;
    color: #090a0c;
    font-size: clamp(34px, 4.6vw, 52px);
    font-weight: 900;
    letter-spacing: -.038em;
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.article-summary {
    margin: 15px 0 0;
    color: #5b606a;
    font-size: 18px;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    margin-top: 17px;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 17px;
    color: var(--nbo-muted);
    font-size: 13px;
    font-weight: 550;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-meta .nbo-icon {
    color: var(--nbo-red);
    font-size: 16px;
}

.share-row {
    display: flex;
    margin-top: 19px;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.share-row > span {
    margin-right: 4px;
    color: #4f535c;
    font-size: 13px;
    font-weight: 750;
}

.share-button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, .13);
    transition: transform .2s ease, filter .2s ease;
}

.share-button:hover {
    color: #fff;
    filter: brightness(.91);
    transform: translateY(-2px);
}

.share-whatsapp { background: #18b95a; }
.share-facebook { background: #1877f2; }
.share-x { background: #111; }
.share-telegram { background: #229ed9; }

.entry-content {
    color: #292c32;
    font-size: 18px;
    line-height: 1.72;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.entry-content p {
    margin: 0 0 1.18em;
}

.single-article .entry-content p {
    text-align: justify;
    text-justify: inter-word;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 1.4em 0 .55em;
    color: var(--nbo-ink);
    letter-spacing: -.018em;
    line-height: 1.22;
}

.entry-content h2 { font-size: 29px; }
.entry-content h3 { font-size: 24px; }
.entry-content h4 { font-size: 20px; }

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.3em;
}

.entry-content blockquote {
    padding: 6px 0 6px 20px;
    margin: 1.5em 0;
    border-left: 5px solid var(--nbo-red);
    color: #50545d;
    font-size: 1.08em;
    font-style: italic;
}

.entry-content img,
.entry-content video,
.entry-content iframe {
    max-width: 100%;
}

.entry-content img {
    height: auto;
}

.entry-content figure {
    max-width: 100%;
    margin-top: 1.35em;
    margin-bottom: 1.35em;
}

.entry-content figure img,
.entry-content > img:not(.alignleft):not(.alignright),
.entry-content .aligncenter {
    margin-right: auto;
    margin-left: auto;
}

.entry-content .alignleft {
    float: left;
    margin: .45em 1.4em 1em 0;
}

.entry-content .alignright {
    float: right;
    margin: .45em 0 1em 1.4em;
}

.entry-content .alignwide {
    width: 100%;
}

.entry-content figcaption,
.wp-caption-text {
    margin-top: 7px;
    color: var(--nbo-muted);
    font-size: 12px;
    text-align: center;
}

.entry-content iframe {
    display: block;
    margin-inline: auto;
}

.entry-content table {
    width: 100%;
    margin-bottom: 1.4em;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 10px;
    border: 1px solid var(--nbo-line);
    text-align: left;
}

.article-tags {
    display: flex;
    padding: 15px 0;
    margin-top: 25px;
    border-top: 1px solid var(--nbo-line);
    border-bottom: 1px solid var(--nbo-line);
    flex-wrap: wrap;
    gap: 7px;
    color: var(--nbo-muted);
    font-size: 13px;
}

.article-tags a {
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--nbo-red-soft);
    color: var(--nbo-red-dark);
}

.related-news {
    margin-top: 42px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.related-grid .post-image-link {
    aspect-ratio: 16 / 10;
}

.related-news h3 {
    margin: 8px 0 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.32;
}

.contact-card {
    padding: clamp(23px, 4vw, 42px);
    border: 1px solid var(--nbo-line);
    border-radius: 16px;
    background: linear-gradient(140deg, #fff 0%, #fff 62%, #fff4f4 100%);
    box-shadow: var(--nbo-shadow);
}

.contact-card h2 {
    margin-top: 0;
    font-size: clamp(26px, 3vw, 38px);
}

.contact-card dl {
    display: grid;
    margin: 25px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-card dl > div {
    padding: 17px;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(30, 35, 45, .07);
}

.contact-card dt {
    color: var(--nbo-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-card dd {
    margin: 4px 0 0;
    color: var(--nbo-ink);
    font-size: 15px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.contact-card h3 {
    margin: 0 0 12px;
}

.contact-socials .nbo-social-instagram { background: linear-gradient(135deg, #feda75, #d62976 52%, #4f5bd5); }
.contact-socials .nbo-social-x { background: #111; }
.contact-socials .nbo-social-youtube { background: #f00; }
.contact-socials .nbo-social-whatsapp { background: #18b95a; }

.legal-content h2 {
    margin-top: 1.4em;
    font-size: 23px;
}

/* Comentários */
.comments-area {
    padding-top: 35px;
    margin-top: 40px;
    border-top: 1px solid var(--nbo-line);
}

.comments-title,
.comment-reply-title {
    color: var(--nbo-ink);
    font-size: 23px;
}

.comment-list {
    padding: 0;
    list-style: none;
}

.comment-list .children {
    margin-left: 30px;
    list-style: none;
}

.comment-body {
    padding: 19px;
    margin-bottom: 15px;
    border: 1px solid var(--nbo-line);
    border-radius: 9px;
}

.comment-meta {
    font-size: 13px;
}

.comment-author img {
    display: inline-block;
    margin-right: 8px;
    border-radius: 50%;
    vertical-align: middle;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #cfd2d8;
    border-radius: 7px;
}

.form-submit .submit,
.primary-button {
    display: inline-flex;
    min-height: 45px;
    padding: 10px 18px;
    border: 0;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    background: var(--nbo-red);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.form-submit .submit:hover,
.primary-button:hover {
    background: var(--nbo-red-dark);
    color: #fff;
}

/* 404 */
.error-page {
    display: grid;
    min-height: 560px;
    padding-block: 70px;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.error-code {
    color: var(--nbo-red);
    font-size: clamp(130px, 19vw, 245px);
    font-weight: 950;
    letter-spacing: -.09em;
    line-height: .8;
}

.error-copy h1 {
    margin: 0;
    color: var(--nbo-ink);
    font-size: clamp(35px, 5vw, 58px);
    letter-spacing: -.04em;
    line-height: 1.05;
}

.error-copy p {
    max-width: 620px;
    margin: 18px 0 22px;
    color: var(--nbo-muted);
    font-size: 17px;
}

.error-copy .search-form {
    margin-bottom: 18px;
}

/* Rodapé */
.site-footer {
    border-top: 5px solid var(--nbo-red);
    background: #111318;
    color: rgba(255, 255, 255, .72);
}

.footer-inner {
    display: grid;
    padding-block: 45px 36px;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 55px;
}

.footer-brand img {
    width: 180px;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 7px 11px rgba(0, 0, 0, .34));
}

.footer-brand p {
    max-width: 350px;
    margin: 13px 0 0;
    font-size: 13px;
}

.site-footer h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-menu,
.footer-navigation > .menu {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 15px;
    list-style: none;
}

.footer-menu a,
.footer-navigation > .menu a,
.privacy-link {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.footer-menu a:hover,
.footer-navigation > .menu a:hover,
.privacy-link:hover {
    color: #fff;
}

.footer-socials .nbo-social {
    background: rgba(255, 255, 255, .1);
}

.footer-socials .nbo-social:hover {
    background: var(--nbo-red);
}

.privacy-link {
    display: inline-block;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    background: #0a0b0e;
}

.footer-bottom .nbo-container {
    display: flex;
    min-height: 61px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

.footer-bottom a {
    color: #fff;
}

/* WordPress */
.sticky { display: block; }
.bypostauthor { display: block; }
.gallery-caption { font-size: 12px; }

@media (max-width: 1100px) {
    .primary-menu a,
    .primary-menu-wrap > .menu a {
        padding-inline: 11px;
        font-size: 12px;
    }

    .header-socials .nbo-social {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .featured-layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(315px, 1fr);
    }
}

@media (max-width: 960px) {
    .menu-toggle {
        display: inline-flex;
        order: 1;
    }

    .menu-toggle[aria-expanded="true"] {
        position: fixed;
        z-index: 170;
        top: 14px;
        left: 15px;
        min-height: 47px;
        border-radius: 7px;
        background: rgba(0, 0, 0, .22);
    }

    .home-button {
        order: 0;
    }

    .primary-menu-wrap {
        position: fixed;
        z-index: 150;
        top: 0;
        left: 0;
        width: min(86vw, 390px);
        height: 100vh;
        padding: 77px 18px 24px;
        overflow-y: auto;
        background: #a80a0a;
        box-shadow: 18px 0 45px rgba(0, 0, 0, .3);
        transform: translateX(-105%);
        transition: transform .28s ease;
    }

    .primary-menu-wrap.is-open {
        transform: translateX(0);
    }

    .primary-menu,
    .primary-menu-wrap > .menu {
        display: block;
        min-height: 0;
    }

    .primary-menu li,
    .primary-menu-wrap > .menu li {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .primary-menu a,
    .primary-menu-wrap > .menu a {
        min-height: 48px;
        padding: 10px 8px;
        color: #fff;
        font-size: 14px;
    }

    .primary-menu .sub-menu {
        position: static;
        display: block;
        width: 100%;
        padding: 0 0 8px 13px;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .primary-menu .sub-menu li {
        border-bottom: 0;
    }

    .primary-menu .sub-menu a {
        min-height: 40px;
        color: rgba(255, 255, 255, .82);
        font-size: 12px;
    }

    .primary-menu .sub-menu a:hover {
        background: rgba(0, 0, 0, .13);
        color: #fff;
    }

    .nav-actions {
        order: 2;
    }

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

    .featured-side-grid {
        min-height: 390px;
    }

    .home-content-grid,
    .single-layout,
    .page-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-sidebar,
    .content-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .home-sidebar .widget,
    .content-sidebar .widget,
    .weather-card {
        margin-bottom: 0;
    }

    .news-card-grid,
    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card dl {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .nbo-container {
        width: min(calc(100% - 28px), var(--nbo-container));
    }

    .brand-inner {
        min-height: 135px;
        padding-block: 15px;
    }

    .custom-logo-link,
    .nbo-fallback-logo {
        width: min(270px, 75vw);
    }

    .custom-logo,
    .nbo-fallback-logo img {
        max-height: 112px;
    }

    .home-button {
        width: 47px;
    }

    .menu-toggle {
        padding-inline: 10px;
        font-size: 12px;
    }

    .header-socials .nbo-social-instagram,
    .header-socials .nbo-social-youtube {
        display: none;
    }

    .header-socials {
        gap: 3px;
        padding-inline: 2px;
    }

    .search-toggle {
        width: 43px;
    }

    .home-main {
        padding-block: 14px 45px;
    }

    .news-ticker {
        min-height: 43px;
    }

    .ticker-label {
        min-width: 75px;
        padding-inline: 12px;
        font-size: 11px;
    }

    .ticker-item {
        padding-left: 18px;
    }

    .ticker-item time {
        display: none;
    }

    .ticker-item span {
        font-size: 12px;
    }

    .featured-carousel {
        min-height: 385px;
    }

    .featured-content {
        padding: 23px 20px 27px;
    }

    .featured-title {
        max-width: 100%;
        font-size: 25px;
    }

    .carousel-dots {
        right: 21px;
        bottom: 15px;
    }

    .featured-side-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .featured-side-card {
        min-height: 230px;
    }

    .featured-side-card .featured-content {
        padding: 19px;
    }

    .side-card-title {
        font-size: 17px;
        -webkit-line-clamp: 2;
    }

    .home-content-grid {
        margin-top: 34px;
        gap: 34px;
    }

    .category-split + .category-split,
    .category-grid-section {
        margin-top: 39px;
    }

    .section-heading {
        margin-bottom: 15px;
    }

    .section-heading h2 {
        font-size: 21px;
    }

    .section-heading > a {
        font-size: 10px;
    }

    .category-split-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-lead h3 {
        font-size: 22px;
    }

    .category-side-list {
        gap: 15px;
    }

    .category-side-item {
        display: grid;
        grid-template-columns: 125px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: start;
        column-gap: 12px;
    }

    .category-side-item + .category-side-item {
        padding-top: 15px;
    }

    .category-side-item .post-image-link {
        grid-row: 1 / 3;
        aspect-ratio: 1.25 / 1;
    }

    .category-side-item h3 {
        margin-top: 0;
        font-size: 15px;
        -webkit-line-clamp: 3;
    }

    .home-sidebar,
    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .news-card-grid,
    .archive-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        display: grid;
        grid-template-columns: 135px minmax(0, 1fr);
        gap: 13px;
    }

    .news-card .post-image-link {
        aspect-ratio: 1.2 / 1;
    }

    .news-card-body {
        padding-top: 1px;
    }

    .news-card h3 {
        font-size: 15px;
    }

    .listing-page,
    .page-layout,
    .single-layout {
        padding-block: 32px 50px;
    }

    .article-header h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .article-summary {
        font-size: 16px;
    }

    .post-meta {
        gap: 8px 13px;
        font-size: 12px;
    }

    .entry-content {
        font-size: 17px;
        line-height: 1.68;
    }

    .single-article .entry-content p {
        text-align: left;
    }

    .entry-content .alignleft,
    .entry-content .alignright {
        float: none;
        margin-right: auto;
        margin-left: auto;
    }

    .related-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        overflow: visible;
    }

    .related-grid article {
        display: grid;
        min-width: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--nbo-line);
        grid-template-columns: 125px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
    }

    .related-grid article:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .related-grid .post-image-link {
        aspect-ratio: 1.25 / 1;
    }

    .related-news h3 {
        margin: 0;
        font-size: 15px;
        line-height: 1.35;
    }

    .error-page {
        min-height: 0;
        padding-block: 50px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .error-code {
        font-size: 125px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom .nbo-container {
        padding-block: 15px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }
}

@media (max-width: 430px) {
    .header-socials .nbo-social {
        display: none;
    }

    .article-header h1 {
        font-size: 29px;
    }

    .news-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .share-row > span {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
