/* Brasil Portal — Bold Mosaic + cores Brasil */

:root {
	--br-green: #009c3b;
	--br-green-dark: #007a2e;
	--br-yellow: #ffdf00;
	--br-blue: #002776;
	--br-blue-mid: #0a3d9c;
	--br-blue-deep: #00133d;

	--bg: #f4f5f7;
	--surface: #ffffff;
	--ink: #0f1420;
	--ink-soft: #2c3345;
	--muted: #6b7280;
	--line: #e4e7ec;
	--radius: 10px;
	--shadow: 0 8px 28px rgba(0, 39, 118, 0.08);
	--font: "Outfit", system-ui, sans-serif;
	--font-news: "Source Serif 4", Georgia, serif;
	--container: 1200px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--br-blue);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

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

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin: 0 0 0.5em;
	letter-spacing: -0.02em;
}

.bp-container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.screen-reader-text,
.bp-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.bp-skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 14px;
	background: var(--br-blue);
	color: #fff;
	border-radius: 6px;
}

/* Top bar */
.bp-topbar {
	background: var(--br-green);
	border-bottom: 3px solid var(--br-yellow);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

.bp-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	min-height: 36px;
}

.bp-topbar__left,
.bp-topbar__right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bp-topbar__date {
	opacity: 0.92;
	text-transform: capitalize;
	font-weight: 600;
}

.bp-brand__tag {
	display: none;
}

/* Header — NÃO sticky */
.bp-header {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
	position: relative;
	z-index: 50;
}

.bp-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.bp-brand {
	flex: 0 1 auto;
	max-width: 340px;
	min-width: 160px;
}

.bp-brand__text {
	font-family: var(--font);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--br-blue);
	letter-spacing: -0.03em;
}

.bp-brand .custom-logo-link {
	display: inline-block;
}

.bp-brand .custom-logo {
	max-height: 72px;
	width: auto;
}

/* Banner ao lado da logo */
.bp-header-banner {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 60px;
	max-width: 728px;
	margin-left: auto;
}

.bp-header-banner .bp-widget {
	margin: 0;
	background: transparent;
	border: 0;
	padding: 0;
	width: 100%;
	text-align: right;
}

.bp-header-banner .bp-widget__title {
	display: none;
}

.bp-header-banner img {
	max-width: 100%;
	height: auto;
	margin-left: auto;
}

.bp-search {
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.12);
}

.bp-search--top {
	max-width: 200px;
}

.bp-search input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 6px 12px;
	font: inherit;
	font-size: 12px;
	color: #fff;
	min-width: 0;
}

.bp-search input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.bp-search button {
	border: 0;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	font-weight: 700;
	padding: 6px 12px;
	cursor: pointer;
}

.bp-search button:hover {
	background: var(--br-blue-deep);
}

/* Banners globais */
.bp-banner {
	padding: 14px 0;
	background: var(--bg);
}

.bp-banner--below-menu {
	border-bottom: 1px solid var(--line);
	background: #eef1f4;
}

.bp-banner--below-slider {
	margin-top: 18px;
}

.bp-banner .bp-widget {
	margin: 0;
	background: transparent;
	border: 0;
	padding: 0;
	text-align: center;
}

.bp-banner .bp-widget__title {
	display: none;
}

.bp-banner img {
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

/* Nav — centralizado, sem sticky */
.bp-nav {
	background: linear-gradient(180deg, var(--br-blue-mid), var(--br-blue));
}

.bp-nav__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	position: relative;
}

.bp-nav__toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 10px;
	cursor: pointer;
}

.bp-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	margin: 5px 0;
}

.bp-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.bp-menu > li {
	position: relative;
}

.bp-menu > li > a {
	display: block;
	color: rgba(255, 255, 255, 0.94);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 14px 12px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	white-space: nowrap;
}

.bp-menu > li:last-child > a {
	border-right: 0;
}

.bp-menu > li > a:hover,
.bp-menu > li.current-menu-item > a,
.bp-menu > li.current-menu-ancestor > a {
	color: var(--br-yellow);
	background: rgba(255, 255, 255, 0.06);
}

.bp-menu .sub-menu {
	display: none;
	position: absolute;
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	min-width: 200px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	z-index: 20;
}

.bp-menu > li:hover > .sub-menu {
	display: block;
}

.bp-menu .sub-menu a {
	display: block;
	padding: 10px 16px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 600;
}

.bp-menu .sub-menu a:hover {
	background: rgba(0, 156, 59, 0.08);
	color: var(--br-green);
}

/* Main */
.bp-main {
	padding: 24px 0 56px;
}

/* Badges / meta */
.bp-badge {
	display: inline-block;
	background: var(--br-yellow);
	color: #1a1500 !important;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.bp-meta {
	color: var(--muted);
	font-size: 12px;
	font-weight: 500;
	margin-top: 8px;
}

/* Section heads */
.bp-section {
	margin-top: 40px;
}

.bp-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--br-blue);
	position: relative;
}

.bp-section__head::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 72px;
	height: 2px;
	background: var(--br-green);
}

.bp-section__title {
	font-family: var(--font);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0;
}

.bp-section__more {
	font-size: 12px;
	font-weight: 700;
	color: var(--br-green);
	text-transform: uppercase;
}

/* Hero mosaico — 1 grande + 2 menores | autoplay 6 matérias */
.bp-hero {
	margin-top: 4px;
}

.bp-mosaic {
	position: relative;
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 10px;
	min-height: 360px;
}

.bp-mosaic__main,
.bp-mosaic__side {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--br-blue-deep);
	box-shadow: var(--shadow);
	min-height: 0;
}

.bp-mosaic__main {
	min-height: 360px;
}

.bp-mosaic__sides {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
	min-height: 360px;
}

.bp-mosaic__link {
	display: block;
	height: 100%;
	color: #fff;
	position: relative;
}

.bp-mosaic__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s var(--ease), opacity 0.35s var(--ease);
}

.bp-mosaic__main .bp-mosaic__link {
	min-height: 360px;
}

.bp-mosaic__main .bp-mosaic__link img {
	min-height: 360px;
	max-height: 360px;
}

.bp-mosaic__side .bp-mosaic__link,
.bp-mosaic__side .bp-mosaic__link img {
	min-height: 175px;
	max-height: 175px;
}

.bp-mosaic__link:hover img {
	transform: scale(1.04);
}

.bp-mosaic__caption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 12px 14px 14px;
	background: linear-gradient(transparent, rgba(0, 19, 61, 0.92));
	color: #fff;
	z-index: 1;
}

.bp-mosaic__caption .bp-badge {
	background: var(--br-yellow);
	pointer-events: none;
}

.bp-mosaic__title {
	font-family: var(--font);
	font-size: clamp(1.05rem, 1.8vw, 1.45rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 4px;
}

.bp-mosaic__side .bp-mosaic__title {
	font-size: 0.9rem;
	margin: 0;
}

.bp-mosaic__caption p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bp-mosaic__main .bp-mosaic__caption {
	padding: 16px 18px 18px;
}

.bp-mosaic__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--br-blue);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.bp-mosaic__nav:hover {
	background: var(--br-green);
	color: #fff;
}

.bp-mosaic__nav--prev {
	left: 10px;
}

.bp-mosaic__nav--next {
	right: 10px;
}

.bp-mosaic__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 5;
	display: flex;
	gap: 8px;
	justify-content: center;
	pointer-events: none;
}

.bp-mosaic__dots button {
	pointer-events: auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.65);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	padding: 0;
}

.bp-mosaic__dots button.is-active {
	background: var(--br-yellow);
	width: 22px;
	border-radius: 999px;
}

.bp-mosaic.is-fading .bp-mosaic__link img {
	opacity: 0.35;
}

/* Cards */
.bp-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.bp-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.bp-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #dfe3ea;
}

.bp-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.bp-card:hover .bp-card__media img {
	transform: scale(1.04);
}

.bp-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bp-card__title {
	font-family: var(--font);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
}

.bp-card__title a {
	color: var(--ink);
}

.bp-card__title a:hover {
	color: var(--br-green);
}

.bp-card__excerpt {
	color: var(--muted);
	font-size: 13.5px;
	margin: 8px 0 0;
}

.bp-card--compact .bp-card__title {
	font-size: 0.95rem;
}

.bp-card--compact .bp-card__media {
	aspect-ratio: 16 / 9;
}

.bp-card--list {
	flex-direction: row;
	align-items: stretch;
	border-radius: 8px;
}

.bp-card--list .bp-card__media {
	width: 96px;
	min-width: 96px;
	aspect-ratio: 1;
	border-radius: 0;
}

.bp-card--list .bp-card__body {
	padding: 12px 14px;
}

.bp-card--list .bp-card__title {
	font-size: 0.95rem;
}

.bp-card--list:hover {
	transform: none;
}

/* Grids */
.bp-grid {
	display: grid;
	gap: 16px;
}

.bp-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.bp-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.bp-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.bp-grid--spaced {
	margin-top: 16px;
}

/* Home: posts + banner lateral */
.bp-row-ad {
	display: grid;
	gap: 16px;
	align-items: start;
}

.bp-row-ad--df {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.bp-row-ad--df .bp-row-ad__posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.bp-row-ad--economia {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.bp-row-ad__slot {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	min-height: 250px;
	padding: 8px 8px 10px;
}

.bp-ad-label {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b0b6c0;
	margin: 0 0 6px;
	line-height: 1;
	user-select: none;
}

.bp-row-ad__slot--300x250 {
	width: 300px;
	max-width: 100%;
	min-height: 250px;
}

.bp-row-ad__slot--300x600 {
	width: 300px;
	max-width: 100%;
	min-height: 600px;
	align-self: stretch;
}

.bp-row-ad__slot .bp-widget {
	margin: 0;
	border: 0;
	background: transparent;
	padding: 0;
	width: 100%;
	text-align: center;
}

.bp-row-ad__slot .bp-widget__title {
	display: none;
}

.bp-row-ad__slot img {
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.bp-ad-placeholder {
	width: 100%;
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: repeating-linear-gradient(
		-45deg,
		#f0f2f5,
		#f0f2f5 8px,
		#e6e9ef 8px,
		#e6e9ef 16px
	);
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.bp-ad-placeholder--tall {
	min-height: 600px;
}

.bp-stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bp-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.bp-split__col {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
}

.bp-empty {
	color: var(--muted);
	font-size: 14px;
}

/* Carousel Esportes */
.bp-carousel {
	position: relative;
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 8px;
}

.bp-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 32px) / 3);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 4px 2px 12px;
}

.bp-carousel__track::-webkit-scrollbar {
	display: none;
}

.bp-carousel__item {
	scroll-snap-align: start;
}

.bp-carousel__btn {
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--surface);
	color: var(--br-blue);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bp-carousel__btn:hover {
	background: var(--br-green);
	border-color: var(--br-green);
	color: #fff;
}

/* Single / article */
.bp-single {
	padding-top: 8px;
}

.bp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 20px;
}

.bp-breadcrumb a {
	color: var(--br-blue);
	font-weight: 600;
}

.bp-breadcrumb span:last-child {
	color: var(--ink-soft);
	max-width: 50ch;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bp-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: start;
}

.bp-article__main {
	min-width: 0;
}

.bp-article__head {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 28px;
	margin-bottom: 18px;
}

.bp-article__title {
	font-family: var(--font-news);
	font-size: clamp(1.65rem, 3.2vw, 2.45rem);
	font-weight: 700;
	color: var(--ink);
	margin: 10px 0 14px;
	line-height: 1.2;
}

.bp-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
}

.bp-article__sep {
	opacity: 0.5;
}

.bp-article__hero {
	margin: 0 0 18px;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
}

.bp-article__hero img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
}

.bp-article__hero figcaption {
	padding: 10px 14px;
	font-size: 13px;
	color: var(--muted);
	border-top: 1px solid var(--line);
}

.bp-article__content {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 32px;
	font-size: 1.1rem;
	line-height: 1.85;
	color: var(--ink-soft);
}

.bp-article__content > *:first-child {
	margin-top: 0;
}

.bp-article__content p {
	margin: 0 0 1.15em;
}

.bp-article__content h2,
.bp-article__content h3 {
	color: var(--ink);
	margin-top: 1.4em;
}

.bp-article__aside,
.bp-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bp-article__aside {
	position: sticky;
	top: 24px;
	align-self: start;
	overflow: visible;
}

.bp-article__aside .bp-widget,
.bp-sidebar .bp-widget {
	background: var(--surface);
	border: 1px solid var(--line);
	border-top: 3px solid var(--br-green);
	border-radius: var(--radius);
	padding: 16px;
	margin: 0;
}

.bp-widget__title {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--br-blue);
}

.bp-article__tags {
	margin-top: 18px;
	padding: 16px 20px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.bp-article__tags-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
}

.bp-article__tags a {
	background: rgba(0, 156, 59, 0.1);
	color: var(--br-green-dark);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
}

.bp-section--related {
	margin-top: 32px;
}

.bp-section--more {
	margin-top: 40px;
}

/* Archive / category */
.bp-archive__head {
	margin-bottom: 28px;
	padding: 24px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	border-left: 4px solid var(--br-green);
}

.bp-archive__head--cat {
	background: linear-gradient(135deg, #fff, #eef2fb);
}

.bp-archive__eyebrow {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--br-green);
}

.bp-archive__title {
	font-family: var(--font-news);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0;
	color: var(--br-blue);
}

.bp-archive__desc {
	margin: 10px 0 0;
	color: var(--muted);
}

.bp-featured-row {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 20px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
}

.bp-featured-row__media img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}

.bp-featured-row__body {
	padding: 22px 22px 22px 0;
}

.bp-featured-row__title {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 10px;
}

.bp-featured-row__title a {
	color: var(--ink);
}

.bp-archive__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
}

.bp-btn {
	display: inline-block;
	background: var(--br-green);
	color: #fff !important;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 999px;
}

.navigation.pagination .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 32px;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	color: var(--ink);
	font-weight: 700;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: var(--br-green);
	border-color: var(--br-green);
	color: #fff;
}

/* Footer compacto */
.bp-footer {
	background: var(--br-blue-deep);
	color: rgba(255, 255, 255, 0.82);
	margin-top: 28px;
	padding: 14px 0;
	border-top: 3px solid var(--br-yellow);
	position: relative;
}

.bp-footer::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--br-green);
}

.bp-footer a {
	color: rgba(255, 255, 255, 0.88);
}

.bp-footer a:hover {
	color: var(--br-yellow);
}

.bp-footer__bar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	min-height: 0;
	padding: 6px 0;
}

.bp-footer__brand {
	flex: 0 1 220px;
	max-width: 260px;
}

.bp-footer__logo {
	display: inline-block;
	line-height: 0;
}

.bp-footer__logo .custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.bp-footer__logo img,
.bp-footer__logo .custom-logo {
	max-width: 180px;
	width: auto;
	height: auto;
	max-height: 64px;
	display: block;
}

.bp-footer__tagline {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.7);
}

.bp-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.bp-footer__menu a {
	font-size: 13px;
	font-weight: 600;
}

.bp-footer__legal {
	text-align: right;
	max-width: 420px;
	flex: 1 1 240px;
}

.bp-footer__copy {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
}

.bp-footer__rights {
	margin: 4px 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.45;
}

.bp-footer__rights a {
	color: rgba(255, 255, 255, 0.85);
}

.bp-footer__notice {
	margin: 6px 0 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.4;
}

.bp-footer__sep {
	margin: 0 4px;
	opacity: 0.5;
}

.bp-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--br-green);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s, transform 0.2s;
	z-index: 50;
}

.bp-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.bp-top:hover {
	background: var(--br-blue);
	transform: translateY(-2px);
}

.bp-comments {
	margin-top: 40px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

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

	.bp-mosaic {
		min-height: 320px;
	}

	.bp-mosaic__main,
	.bp-mosaic__sides,
	.bp-mosaic__main .bp-mosaic__link,
	.bp-mosaic__main .bp-mosaic__link img {
		min-height: 320px;
		max-height: 320px;
	}

	.bp-mosaic__side .bp-mosaic__link,
	.bp-mosaic__side .bp-mosaic__link img {
		min-height: 155px;
		max-height: 155px;
	}

	.bp-carousel__track {
		grid-auto-columns: calc((100% - 16px) / 2);
	}

	.bp-article__layout,
	.bp-archive__layout {
		grid-template-columns: 1fr;
	}

	.bp-article__aside {
		position: static;
	}

	.bp-header-banner {
		max-width: 100%;
	}

	.bp-row-ad--df,
	.bp-row-ad--economia {
		grid-template-columns: 1fr;
	}

	.bp-row-ad--df .bp-row-ad__posts {
		grid-template-columns: repeat(3, 1fr);
	}

	.bp-row-ad__slot--300x250,
	.bp-row-ad__slot--300x600 {
		width: 100%;
		max-width: 300px;
		margin-inline: auto;
	}

	.bp-row-ad__slot--300x600 {
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.bp-header__row {
		flex-direction: column;
		align-items: stretch;
	}

	.bp-brand {
		max-width: none;
		text-align: center;
	}

	.bp-header-banner {
		justify-content: center;
		max-width: none;
	}

	.bp-header-banner .bp-widget,
	.bp-header-banner img {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.bp-search--top {
		max-width: 160px;
	}

	.bp-nav__toggle {
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}

	.bp-nav__inner {
		justify-content: flex-end;
		min-height: 52px;
	}

	.bp-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--br-blue-deep);
		padding: 8px 0 16px;
		z-index: 30;
	}

	.bp-nav.is-open .bp-menu {
		display: flex;
	}

	.bp-menu > li > a {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.bp-menu .sub-menu {
		position: static;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.2);
		display: none;
	}

	.bp-menu > li:hover > .sub-menu,
	.bp-menu > li.is-open > .sub-menu {
		display: block;
	}

	.bp-grid--2,
	.bp-grid--3,
	.bp-grid--4,
	.bp-split,
	.bp-row-ad--df .bp-row-ad__posts {
		grid-template-columns: 1fr;
	}

	.bp-footer__bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.bp-footer__brand {
		max-width: none;
	}

	.bp-footer__legal {
		text-align: left;
		max-width: none;
	}

	.bp-mosaic {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.bp-mosaic__main,
	.bp-mosaic__sides,
	.bp-mosaic__main .bp-mosaic__link,
	.bp-mosaic__main .bp-mosaic__link img {
		min-height: 200px;
		max-height: 220px;
	}

	.bp-mosaic__sides {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		min-height: 0;
	}

	.bp-mosaic__side .bp-mosaic__link,
	.bp-mosaic__side .bp-mosaic__link img {
		min-height: 140px;
		max-height: 150px;
	}

	.bp-mosaic__nav {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.bp-carousel {
		grid-template-columns: 1fr;
	}

	.bp-carousel__btn {
		display: none;
	}

	.bp-carousel__track {
		grid-auto-columns: 82%;
	}

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

	.bp-featured-row__body {
		padding: 16px;
	}

	.bp-article__content {
		padding: 18px;
	}

	.bp-ad-placeholder--tall {
		min-height: 320px;
	}
}

@media (max-width: 480px) {
	.bp-container {
		width: min(100% - 24px, var(--container));
	}

	.bp-topbar__date {
		font-size: 11px;
	}
}
