@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
	--font-sans: "Quicksand", ui-sans-serif, system-ui, sans-serif;
	--color-spfc-red: #E30613;
	--color-spfc-black: #000000;
	--color-spfc-white: #FFFFFF;
	--neutral-50: #fafafa;
	--neutral-100: #f5f5f5;
	--neutral-200: #e5e5e5;
	--neutral-300: #d4d4d4;
	--neutral-400: #a3a3a3;
	--neutral-500: #737373;
	--neutral-600: #525252;
	--neutral-700: #404040;
	--neutral-800: #262626;
	--neutral-900: #171717;
	--text-body: #1a1a1a;
}

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

html {
	scroll-behavior: smooth;
}

body.mt-body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--font-sans);
	background: var(--neutral-50);
	color: var(--text-body);
}

body.mt-body.admin-bar {
	padding-top: 0;
}

h1, h2, h3, h4, h5, h6, button, input, select, textarea, a, span, p, div {
	font-family: var(--font-sans);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* Shell (equiv. App wrapper) */
.mt-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	overflow-x: hidden;
	background: var(--neutral-50);
}

@media (min-width: 768px) {
	.mt-shell {
		padding: 2rem;
	}
}

.mt-wrap {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	padding-bottom: 6rem;
}

@media (min-width: 768px) {
	.mt-wrap {
		padding-bottom: 2rem;
	}
}

/* Colors */
.text-spfc-red { color: var(--color-spfc-red); }
.bg-spfc-red { background-color: var(--color-spfc-red); }
.border-spfc-red { border-color: var(--color-spfc-red); }

/* Navbar */
.mt-nav-wrap {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.mt-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0.5rem;
	gap: 0.75rem;
}

.mt-header-brand {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-width: 0;
	flex: 1;
}

.mt-logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.mt-logo-strip {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mt-logo-strip span {
	display: block;
	height: 4px;
	width: 28px;
}

.mt-logo-strip .s1 { background: var(--color-spfc-red); }
.mt-logo-strip .s2 { background: #fff; border-top: 1px solid var(--neutral-100); border-bottom: 1px solid var(--neutral-100); }
.mt-logo-strip .s3 { background: #000; }

.mt-site-title {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0;
	line-height: 1.1;
}

.mt-nav-pill {
	display: none;
	align-items: center;
	background: var(--neutral-100);
	padding: 0.375rem;
	border-radius: 9999px;
	gap: 0.25rem;
	border: 1px solid var(--neutral-200);
	position: relative;
	z-index: 60;
}

@media (min-width: 1024px) {
	.mt-nav-pill {
		display: flex;
	}
}

.mt-primary-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.25rem;
}

.mt-primary-menu > li {
	position: relative;
	margin: 0;
	padding: 0;
}

.mt-primary-menu > li > a {
	display: block;
	padding: 0.625rem 2rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	border-radius: 9999px;
	color: var(--neutral-500);
	transition: all 0.3s;
}

.mt-primary-menu > li > a:hover {
	color: #000;
	background: rgba(255, 255, 255, 0.5);
}

.mt-primary-menu > li > a.is-active,
.mt-primary-menu > li.current-menu-item > a,
.mt-primary-menu > li.current-menu-ancestor > a {
	background: #fff;
	color: var(--color-spfc-red);
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	transform: scale(1.05);
}

.mt-primary-menu > li.menu-item-has-children > a {
	position: relative;
	padding-right: 1.75rem;
}

.mt-primary-menu > li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0.85rem;
	top: 50%;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.55;
}

.mt-primary-menu .sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 0.35rem);
	min-width: 12rem;
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--neutral-200);
	border-radius: 0.75rem;
	box-shadow: 0 12px 30px rgb(0 0 0 / 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 70;
}

.mt-primary-menu > li:hover > .sub-menu,
.mt-primary-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mt-primary-menu .sub-menu .menu-item {
	margin: 0;
	padding: 0;
}

.mt-primary-menu .sub-menu a {
	display: block;
	padding: 0.55rem 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0.02em;
	color: var(--neutral-600);
	border-radius: 0.35rem;
	margin: 0 0.35rem;
	transition: background 0.15s ease, color 0.15s ease;
}

.mt-primary-menu .sub-menu a:hover {
	background: var(--neutral-100);
	color: #000;
}

.mt-primary-menu .sub-menu .current-menu-item > a {
	background: rgba(227, 6, 19, 0.08);
	color: var(--color-spfc-red);
}

.mt-primary-menu .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	margin-left: 0.25rem;
	margin-top: 0;
}

.mt-header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

/* Menu móvel (hambúrguer) */
.mt-nav-toggle {
	display: flex;
	position: relative;
}

.mt-nav-toggle .mt-nav-toggle-icon {
	display: block;
}

.mt-nav-toggle .mt-nav-toggle-icon--close {
	display: none;
}

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

.mt-nav-toggle[aria-expanded="true"] .mt-nav-toggle-icon--close {
	display: block;
}

@media (min-width: 1024px) {
	.mt-nav-toggle {
		display: none;
	}
}

.mt-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 99990;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	padding: 0;
	margin: 0;
	border: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mt-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mt-mobile-menu-panel {
	width: min(20rem, 88vw);
	max-height: 100%;
	overflow-y: auto;
	background: #fff;
	box-shadow: -8px 0 32px rgb(0 0 0 / 0.2);
	padding: 1.25rem 1rem 2rem;
}

.mt-mobile-primary-menu,
.mt-mobile-primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mt-mobile-primary-menu > li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--neutral-100);
}

.mt-mobile-primary-menu > li > a {
	display: block;
	padding: 1rem 0.5rem;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--neutral-800);
}

.mt-mobile-primary-menu > li > a:hover,
.mt-mobile-primary-menu .sub-menu a:hover {
	color: var(--color-spfc-red);
}

.mt-mobile-primary-menu > li.current-menu-item > a,
.mt-mobile-primary-menu > li.current-menu-ancestor > a {
	color: var(--color-spfc-red);
}

.mt-mobile-primary-menu .sub-menu {
	position: static;
	left: auto;
	top: auto;
	min-width: 0;
	margin: 0;
	padding: 0 0 0.75rem 0.75rem;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	border: none;
	box-shadow: none;
	background: transparent;
}

.mt-mobile-primary-menu .sub-menu .menu-item {
	border-bottom: none;
}

.mt-mobile-primary-menu .sub-menu a {
	display: block;
	padding: 0.5rem 0.5rem 0.5rem 0.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--neutral-600);
}

body.mt-mobile-nav-open {
	overflow: hidden;
}

body.admin-bar .mt-mobile-menu {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .mt-mobile-menu {
		top: 46px;
	}
}

.mt-icon-btn {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--neutral-100);
	border-radius: 9999px;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.mt-icon-btn:hover {
	background: var(--neutral-200);
}

.mt-icon-btn svg {
	width: 18px;
	height: 18px;
	color: var(--neutral-600);
}

.mt-btn-login {
	padding: 0.625rem 1.25rem;
	background: #000;
	color: #fff;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.mt-btn-login:hover {
	background: var(--neutral-800);
}

.mt-cat-scroll {
	display: flex;
	align-items: center;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	border-bottom: 1px solid var(--neutral-100);
	scrollbar-width: none;
}

.mt-cat-scroll::-webkit-scrollbar {
	display: none;
}

.mt-cat-scroll a {
	white-space: nowrap;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--neutral-400);
	transition: color 0.2s;
}

.mt-cat-scroll > ul.mt-cat-scroll-list {
	display: contents;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mt-cat-scroll .menu-item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mt-cat-scroll .menu-item a {
	white-space: nowrap;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--neutral-400);
	transition: color 0.2s;
}

.mt-cat-scroll a:hover,
.mt-cat-scroll a.is-active,
.mt-cat-scroll .menu-item a:hover,
.mt-cat-scroll .menu-item.current-menu-item > a {
	color: var(--color-spfc-red);
}

.mt-cat-placeholder {
	color: var(--neutral-400);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

/* Bottom nav */
.mt-bottom-nav {
	display: block;
	position: fixed;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 50;
	width: 90%;
	max-width: 400px;
}

@media (min-width: 768px) {
	.mt-bottom-nav {
		display: none;
	}
}

.mt-bottom-inner {
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 2rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0.5rem 1.5rem;
}

.mt-bottom-inner a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 1rem;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s;
}

.mt-bottom-inner a.is-active {
	color: var(--color-spfc-red);
}

.mt-bottom-inner a .mt-bn-icon {
	padding: 0.5rem;
	border-radius: 9999px;
	transition: all 0.3s;
}

.mt-bottom-inner a.is-active .mt-bn-icon {
	background: #fff;
	box-shadow: 0 10px 15px -3px rgba(227, 6, 19, 0.2);
	transform: scale(1.1);
}

.mt-bottom-inner a .mt-bn-icon svg {
	width: 20px;
	height: 20px;
}

.mt-bottom-inner a.is-active .mt-bn-icon svg {
	width: 22px;
	height: 22px;
}

.mt-bottom-inner a .mt-bn-label {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 0.25rem;
}

.mt-bottom-inner a:not(.is-active) .mt-bn-label {
	opacity: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
}

/* Footer */
.mt-footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--neutral-200);
	padding-top: 1.5rem;
	gap: 1rem;
	opacity: 0.6;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {
	.mt-footer {
		flex-direction: row;
	}
}

.mt-footer-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.mt-footer-links a:hover {
	color: var(--color-spfc-red);
}

.mt-footer-top {
	display: none;
}

@media (min-width: 768px) {
	.mt-footer-top {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		font-size: 10px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		opacity: 0.6;
		font-family: inherit;
	}

	.mt-footer-top:hover {
		color: var(--color-spfc-red);
	}
}

/* Bento */
.bento-card {
	background: #fff;
	border-radius: 1.5rem;
	border: 1px solid var(--neutral-200);
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
	transition: all 0.3s;
}

.bento-card:hover {
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.bento-button {
	background: var(--color-spfc-red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: none;
	cursor: pointer;
}

.bento-button:hover {
	opacity: 0.9;
}

/* Grid home */
.mt-home-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
	margin-top: 0.5rem;
}

@media (min-width: 1024px) {
	.mt-home-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
}

.mt-home-main {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.mt-home-main {
		grid-column: span 8 / span 8;
	}
}

.mt-home-aside {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.mt-home-aside {
		grid-column: span 4 / span 4;
	}
}

.mt-hero-wrap {
	height: 300px;
}

@media (min-width: 768px) {
	.mt-hero-wrap {
		height: 360px;
	}
}

/* Hero */
.mt-hero {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: #000;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
}

.mt-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s;
}

.mt-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.mt-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.mt-hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
	z-index: 2;
}

.mt-hero-badges {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 20;
	display: flex;
	gap: 0.5rem;
}

.mt-hero-badge {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
}

.mt-hero-badge.bg-spfc-red {
	color: #fff;
}

.mt-hero-badge--glass {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	color: #fff;
}

.mt-hero-bottom {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 20;
	max-width: 85%;
	padding-right: 3rem;
}

.mt-hero-bottom h2 {
	font-size: 1.875rem;
	font-weight: 700;
	color: #fff;
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
	.mt-hero-bottom h2 {
		font-size: 2.25rem;
	}
}

.mt-hero-bottom h2 a:hover {
	color: var(--color-spfc-red);
}

.mt-hero-caption {
	display: none;
}

.mt-hero-caption.is-active {
	display: block;
}

.mt-hero-bottom p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	font-weight: 500;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mt-hero-arrows {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 30;
	display: flex;
	gap: 0.5rem;
}

.mt-hero-arrows button {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(4px);
}

.mt-hero-arrows button:hover {
	background: rgba(255, 255, 255, 0.2);
}

.mt-hero-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	z-index: 30;
	display: flex;
	gap: 1px;
	padding: 0 1.5rem 0.5rem;
}

.mt-hero-progress span {
	flex: 1;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 9999px;
	overflow: hidden;
}

.mt-hero-progress span i {
	display: block;
	height: 100%;
	background: var(--color-spfc-red);
	transform-origin: left;
	transform: scaleX(0);
}

.mt-hero-progress span.is-active i {
	animation: mt-progress 6s linear forwards;
}

@keyframes mt-progress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

/* News list block */
.mt-news-block {
	background: #fff;
	border-radius: 1.5rem;
	border: 1px solid var(--neutral-200);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.mt-news-block {
		padding: 2rem;
	}
}

.mt-news-block-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.mt-news-block-head h2 {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
}

.mt-news-item {
	padding-top: 0;
}

.mt-news-item + .mt-news-item {
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid var(--neutral-100);
}

.mt-news-item a.mt-news-row {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.mt-news-item a.mt-news-row {
		flex-direction: row;
	}
}

.mt-news-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--neutral-100);
	border-radius: 0.75rem;
	overflow: hidden;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.mt-news-thumb {
		width: 16rem;
		aspect-ratio: 4 / 3;
	}
}

.mt-news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.mt-news-item:hover .mt-news-thumb img {
	transform: scale(1.05);
}

.mt-news-meta {
	font-size: 11px;
	font-weight: 700;
	color: var(--neutral-500);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.5rem;
}

.mt-news-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-spfc-red);
	margin: 0 0 0.75rem;
	transition: opacity 0.2s;
}

@media (min-width: 768px) {
	.mt-news-title {
		font-size: 1.5rem;
	}
}

.mt-news-item:hover .mt-news-title {
	opacity: 0.8;
}

.mt-news-excerpt {
	font-size: 0.875rem;
	color: var(--neutral-600);
	font-weight: 500;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mt-news-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Sidebar widgets home */
.mt-widget {
	background: #fff;
	border-radius: 1.5rem;
	border: 1px solid var(--neutral-200);
	padding: 1.5rem;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.mt-widget-red {
	background: var(--color-spfc-red);
	color: #fff;
	border: none;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
	position: relative;
	overflow: hidden;
}

.mt-widget-red .mt-deco {
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	opacity: 0.1;
	width: 6rem;
	height: 6rem;
	border: 8px solid #fff;
	border-radius: 9999px;
}

.mt-widget-black {
	background: #000;
	color: #fff;
	border: none;
}

.mt-widget-dark {
	background: var(--neutral-900);
	color: #fff;
	border: none;
}

/* Breadcrumbs */
.mt-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--neutral-400);
	margin-bottom: 1.5rem;
	padding-left: 0.25rem;
}

.mt-breadcrumbs a:hover {
	color: var(--color-spfc-red);
}

.mt-breadcrumbs .sep {
	color: var(--neutral-300);
}

.mt-breadcrumbs__current {
	color: var(--neutral-600);
	max-width: 12rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Inner pages */
.mt-page {
	max-width: 64rem;
	margin: 0 auto;
	width: 100%;
	padding: 3rem 1rem;
}

.mt-page-narrow {
	max-width: 56rem;
}

.mt-page--wide {
	max-width: 80rem;
}

.mt-page-title {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	text-align: center;
}

.mt-page-title--404 {
	font-size: 4rem;
	line-height: 1;
}

@media (min-width: 768px) {
	.mt-page-title {
		text-align: left;
	}
}

.mt-page-sub {
	color: var(--neutral-500);
	font-size: 1.125rem;
	margin: 0 0 3rem;
	text-align: center;
}

@media (min-width: 768px) {
	.mt-page-sub {
		text-align: left;
	}
}

/* Table standings */
.mt-table-wrap {
	background: #fff;
	border-radius: 2rem;
	border: 1px solid var(--neutral-200);
	overflow: hidden;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.mt-table-wrap table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

.mt-table-wrap thead {
	background: var(--neutral-50);
	border-bottom: 1px solid var(--neutral-200);
}

.mt-table-wrap th {
	padding: 1rem 1.5rem;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--neutral-400);
}

.mt-table-wrap th.mt-th-pos {
	width: 4rem;
}

.mt-table-wrap td {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--neutral-100);
	font-size: 0.875rem;
}

.mt-table-wrap tbody tr:not([class*='mt-zone--']):hover {
	background: var(--neutral-50);
}

/* Faixas de classificação (Brasileirão) */
.mt-table-wrap tbody tr.mt-zone--lib {
	background: #ecfdf5;
}

.mt-table-wrap tbody tr.mt-zone--lib:hover {
	background: #d1fae5;
}

.mt-table-wrap tbody tr.mt-zone--prelib {
	background: #eff6ff;
}

.mt-table-wrap tbody tr.mt-zone--prelib:hover {
	background: #dbeafe;
}

.mt-table-wrap tbody tr.mt-zone--sula {
	background: #fffbeb;
}

.mt-table-wrap tbody tr.mt-zone--sula:hover {
	background: #fef3c7;
}

.mt-table-wrap tbody tr.mt-zone--rebaix {
	background: #fef2f2;
}

.mt-table-wrap tbody tr.mt-zone--rebaix:hover {
	background: #fee2e2;
}

.mt-table-wrap tbody tr.is-spfc {
	box-shadow: inset 4px 0 0 0 var(--color-spfc-red);
}

.mt-pos-badge {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--neutral-400);
}

.mt-pos-badge.is-top {
	background: #ecfdf5;
	color: #16a34a;
}

.mt-pos-badge.is-spfc {
	background: var(--color-spfc-red);
	color: #fff;
}

/* Match cards */
.mt-match-card {
	background: #fff;
	border-radius: 1.5rem;
	border: 1px solid var(--neutral-200);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	transition: box-shadow 0.2s;
}

.mt-match-card:hover {
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
	.mt-match-card {
		flex-direction: row;
	}
}

.mt-match-win {
	border-color: #bbf7d0;
}

/* Single post article */
.mt-single-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--color-spfc-red);
	z-index: 9999;
	transform-origin: left;
	transform: scaleX(0);
}

.mt-article {
	max-width: 56rem;
	margin: 0 auto;
	width: 100%;
	padding: 2rem 1rem 5rem;
}

.mt-article h1 {
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0 0 2rem;
}

@media (min-width: 768px) {
	.mt-article h1 {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.mt-article h1 {
		font-size: 3.75rem;
	}
}

.mt-prose {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--neutral-800);
	max-width: 42rem;
	margin: 0 auto 6rem;
}

.mt-prose--full {
	max-width: none;
}

.mt-prose h2 {
	font-weight: 700;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
}

.mt-prose blockquote {
	border-left: 4px solid var(--color-spfc-red);
	background: var(--neutral-50);
	padding: 2rem 2.5rem;
	border-radius: 0 1.5rem 1.5rem 0;
	margin: 3rem 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.mt-prose strong {
	color: var(--color-spfc-red);
	font-weight: 700;
}

/*
 * Tabelas — padrão único (posts, páginas, bloco Tabela Gutenberg, mídia kit)
 * Não afeta .mt-table-wrap (classificação / dados esportivos).
 */
.mt-prose .wp-block-table,
.mt-mk-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 1.25rem 0 1.75rem;
	border-radius: 0.75rem;
	border: 1px solid var(--neutral-200);
	background: #fff;
}

.mt-prose .wp-block-table table {
	border: none;
}

.mt-prose .wp-block-table figcaption {
	font-size: 0.8125rem;
	color: var(--neutral-500);
	margin: 0;
	padding: 0.65rem 1rem 0.85rem;
	line-height: 1.4;
	caption-side: bottom;
}

.mt-prose table,
.mt-mk-table-wrap table,
.mt-mk-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--neutral-800);
}

.mt-mk-table {
	min-width: min(100%, 20rem);
}

.mt-prose thead th,
.mt-mk-table-wrap thead th,
.mt-mk-table thead th {
	padding: 0.7rem 0.85rem;
	text-align: left;
	vertical-align: top;
	font-weight: 700;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--neutral-600);
	background: var(--neutral-50);
	border-bottom: 2px solid var(--neutral-200);
}

.mt-prose td,
.mt-prose tbody th,
.mt-mk-table-wrap td,
.mt-mk-table-wrap tbody th,
.mt-mk-table td,
.mt-mk-table tbody th {
	padding: 0.7rem 0.85rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--neutral-200);
}

.mt-prose tbody th,
.mt-mk-table-wrap tbody th,
.mt-mk-table tbody th {
	font-weight: 700;
	background: rgba(250, 250, 250, 0.8);
}

.mt-prose thead td,
.mt-mk-table-wrap thead td,
.mt-mk-table thead td {
	padding: 0.7rem 0.85rem;
	text-align: left;
	vertical-align: top;
	font-weight: 700;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--neutral-600);
	background: var(--neutral-50);
	border-bottom: 2px solid var(--neutral-200);
}

.mt-prose tbody tr:last-child td,
.mt-prose tbody tr:last-child th,
.mt-mk-table-wrap tbody tr:last-child td,
.mt-mk-table-wrap tbody tr:last-child th,
.mt-mk-table tbody tr:last-child td,
.mt-mk-table tbody tr:last-child th {
	border-bottom: none;
}

.mt-prose tbody tr:hover td,
.mt-prose tbody tr:hover th,
.mt-mk-table-wrap tbody tr:hover td,
.mt-mk-table-wrap tbody tr:hover th,
.mt-mk-table tbody tr:hover td,
.mt-mk-table tbody tr:hover th {
	background: var(--neutral-50);
}

/* Tabela HTML direta no corpo (sem figure do bloco) */
.mt-prose > table {
	margin: 1.25rem 0 1.75rem;
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	background: #fff;
	box-shadow: 0 0 0 1px var(--neutral-200);
	border-radius: 0.75rem;
	overflow: hidden;
}

/* News card grid */
.mt-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.mt-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.mt-card-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mt-news-card-inner {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	height: 100%;
	padding: 1rem;
}

.mt-news-card-thumb {
	width: 6rem;
	height: 6rem;
	border-radius: 1rem;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--neutral-100);
}

@media (min-width: 768px) {
	.mt-news-card-thumb {
		width: 8rem;
		height: 8rem;
	}
}

.mt-news-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter 0.5s;
}

.bento-card:hover .mt-news-card-thumb img {
	filter: grayscale(0);
}

/* Card notícia (grade): corpo e tipografia */
a.bento-card.mt-news-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.mt-news-card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0.25rem 0;
}

.mt-news-card-cat {
	font-size: 10px;
	font-weight: 700;
	color: var(--color-spfc-red);
	margin-bottom: 0.25rem;
}

.mt-news-card-title {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mt-news-card-date {
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
	margin-top: 0.5rem;
}

/* Elenco: cartinhas FIFA por posição (sem gramado) */
.mt-squad-by-position {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-bottom: 2rem;
}

.mt-squad-pos-block {
	margin: 0;
}

.mt-squad-pos-heading {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--neutral-400);
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--neutral-200);
}

.mt-squad-fifa-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
	align-items: flex-start;
}

.mt-squad-fifa-row .mt-fifa-card {
	width: 5rem;
}

@media (min-width: 640px) {
	.mt-squad-fifa-row .mt-fifa-card {
		width: 5.5rem;
	}
}

@media (min-width: 1024px) {
	.mt-squad-fifa-row .mt-fifa-card {
		width: 6rem;
	}
}

.mt-atleta-card.bento-card {
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: default;
}

.mt-atleta-photo-wrap {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--neutral-50);
	border: 1px solid var(--neutral-100);
	padding: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: var(--neutral-300);
}

.mt-atleta-photo-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mt-atleta-info {
	flex: 1;
	min-width: 0;
}

.mt-atleta-pos {
	font-size: 9px;
	font-weight: 700;
	color: var(--color-spfc-red);
	letter-spacing: 0.1em;
}

.mt-atleta-name {
	font-weight: 700;
	font-size: 0.75rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mt-atleta-meta {
	font-size: 10px;
	color: var(--neutral-400);
	font-weight: 500;
}

.mt-atleta-rating {
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	background: var(--neutral-50);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 10px;
	border: 1px solid var(--neutral-100);
}

.mt-squad-grid-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.mt-squad-grid-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.mt-squad-grid-list {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Search form */
.mt-search-form {
	position: relative;
	max-width: 42rem;
	margin-bottom: 4rem;
}

.mt-search-form input[type="search"] {
	width: 100%;
	background: #fff;
	border: 2px solid var(--neutral-100);
	border-radius: 1rem;
	padding: 1.25rem 3.5rem 1.25rem 1.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	font-family: inherit;
}

.mt-search-form input:focus {
	outline: none;
	border-color: var(--color-spfc-red);
}

.mt-search-form button {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	background: var(--color-spfc-red);
	color: #fff;
	border: none;
	border-radius: 0.75rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Card FIFA (elenco / gramado) */
.mt-fifa-card {
	container-type: inline-size;
	container-name: fifa-card;
	position: relative;
	width: 4rem;
	aspect-ratio: 2 / 3;
	cursor: pointer;
}

.mt-fifa-card__inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--neutral-900);
	border-radius: 0.5rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.25);
}

.mt-fifa-card__head {
	padding: 0.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mt-fifa-card__rating {
	color: #fff;
	font-size: clamp(0.75rem, 6cqw, 0.875rem);
	font-weight: 900;
	line-height: 1.1;
}

.mt-fifa-card__abbr {
	color: var(--neutral-400);
	font-size: clamp(0.5rem, 4.2cqw, 0.625rem);
	font-weight: 700;
	line-height: 1.1;
}

.mt-fifa-card__media {
	flex: 1;
	position: relative;
	overflow: hidden;
	background: var(--neutral-800);
}

.mt-fifa-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	margin-top: 0.25rem;
}

.mt-fifa-card__grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #000, transparent);
	pointer-events: none;
}

.mt-fifa-card__initial {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 900;
	color: #404040;
}

.mt-fifa-card__footer {
	background: #fff;
	padding: 0.1875rem 0.125rem 0.25rem;
	text-align: center;
}

.mt-fifa-card__name {
	color: #000;
	font-size: clamp(0.625rem, 12.5cqw, 0.8125rem);
	font-weight: 900;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 3px;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.mt-fifa-card__badge {
	position: absolute;
	top: -0.375rem;
	right: -0.375rem;
	width: clamp(1.5rem, 24cqw, 2rem);
	height: clamp(1.5rem, 24cqw, 2rem);
	background: var(--color-spfc-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	font-size: clamp(0.625rem, 10.5cqw, 0.8125rem);
	font-weight: 900;
	border: 2px solid #fff;
	z-index: 20;
}

/* --- Blocos migrados de style="" (páginas / templates) --- */

.mt-text-success {
	color: #22c55e;
}

.mt-comments {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--neutral-100);
}

.mt-comments__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.mt-comments__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.mt-news-block-see-all {
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.mt-news-list-stack {
	display: flex;
	flex-direction: column;
}

.mt-news-item-body-col {
	display: flex;
	flex-direction: column;
}

.mt-news-excerpt-row {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.mt-news-excerpt-bullet {
	width: 4px;
	height: 4px;
	background: var(--neutral-300);
	border-radius: 9999px;
	margin-top: 0.5rem;
	flex-shrink: 0;
}

.mt-load-more-wrap {
	margin-top: 3rem;
	text-align: center;
}

.bento-button--neutral {
	font-size: 10px;
	letter-spacing: 0.2em;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	background: var(--neutral-100);
	color: #000;
}

.mt-mt-3 {
	margin-top: 3rem;
}

.mt-mk-list {
	margin: 0;
	padding-left: 1.25rem;
	line-height: 1.65;
	font-size: 0.9375rem;
	color: var(--neutral-700);
	max-width: 42rem;
}

.mt-mk-list li + li {
	margin-top: 0.5rem;
}

.mt-midiakit-body .lead,
.mt-prose.mt-midiakit-body .lead {
	font-size: 1.0625rem;
	line-height: 1.65;
	margin-bottom: 1.75rem;
	color: var(--neutral-700);
}

.mt-midiakit-body h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	letter-spacing: -0.01em;
}

.mt-mk-callout {
	background: var(--neutral-50);
	border-left: 4px solid var(--color-spfc-red);
	padding: 1rem 1.25rem;
	border-radius: 0 0.75rem 0.75rem 0;
	margin: 1.5rem 0;
}

.mt-mk-callout p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--neutral-700);
}

.mt-mk-muted {
	font-size: 0.8125rem;
	color: var(--neutral-500);
	line-height: 1.45;
	margin-top: 0.75rem !important;
}

.mt-contact-cards {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.mt-contact-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.mt-contact-card--wide {
		grid-column: span 2;
	}
}

.mt-contact-card {
	padding: 1.5rem;
}

.mt-contact-card-title {
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--neutral-400);
	margin: 0 0 0.75rem;
}

.mt-contact-card-body {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--neutral-800);
	line-height: 1.45;
}

.mt-contact-card-body a {
	color: var(--color-spfc-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mt-contact-card-body a:hover {
	opacity: 0.85;
}

.mt-contact-card-hint,
.mt-contact-card-links {
	font-size: 0.8125rem;
	color: var(--neutral-500);
	margin: 0.75rem 0 0;
}

.mt-contact-card-links a {
	font-weight: 700;
	color: var(--color-spfc-red);
}

.mt-policy-updated {
	margin: 0 0 2rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-align: center;
}

@media (min-width: 768px) {
	.mt-policy-updated {
		text-align: left;
	}
}

.mt-mt-2 {
	margin-top: 2rem;
}

.mt-mb-3 {
	margin-bottom: 3rem;
}

.mt-mb-4 {
	margin-bottom: 4rem;
}

.mt-empty-card {
	text-align: center;
	padding: 5rem 1rem;
	background: #fff;
	border-radius: 1.5rem;
	border: 1px dashed var(--neutral-200);
}

.mt-empty-card--soft {
	background: var(--neutral-50);
	border: 2px dashed var(--neutral-200);
}

.mt-empty-card__text {
	color: var(--neutral-400);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0;
}

.mt-empty-card__text--plain {
	font-style: normal;
}

.mt-search-results-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--neutral-100);
}

.mt-search-results-title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--neutral-400);
	margin: 0;
}

.mt-search-query {
	color: #000;
}

.mt-search-count {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--neutral-400);
}

.mt-search-placeholder {
	padding: 5rem 1rem;
	color: var(--neutral-300);
}

.mt-search-placeholder p {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0;
}

.mt-text-muted-page {
	color: var(--neutral-500);
}

.mt-text-muted-page--mb {
	margin-bottom: 2rem;
}

.mt-single-header {
	margin-bottom: 3rem;
}

.mt-single-meta-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.mt-single-cat-pill {
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	letter-spacing: 0.1em;
}

.mt-single-readtime {
	color: var(--neutral-400);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.mt-single-lede {
	border-left: 4px solid var(--color-spfc-red);
	padding-left: 1.5rem;
	margin-bottom: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.mt-single-lede p {
	font-size: 1.25rem;
	color: var(--neutral-600);
	font-weight: 500;
	line-height: 1.5;
	margin: 0;
}

.mt-single-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem 0;
	border-top: 1px solid var(--neutral-100);
	border-bottom: 1px solid var(--neutral-100);
}

.mt-single-byline-main {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mt-single-avatar {
	width: 3rem;
	height: 3rem;
	background: var(--neutral-900);
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #fff;
	font-size: 1.25rem;
}

.mt-single-author-name {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.mt-single-date {
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
	letter-spacing: 0.1em;
}

.mt-single-actions {
	display: flex;
	gap: 0.5rem;
}

.mt-single-share-bar {
	flex-wrap: wrap;
	justify-content: flex-end;
	max-width: 100%;
}

.mt-single-share-bar a.mt-icon-btn {
	text-decoration: none;
	color: inherit;
}

.mt-single-share-bar svg,
.mt-single-share-bar .mt-icon-btn svg {
	width: 18px;
	height: 18px;
}

.mt-single-readtime {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.mt-single-readtime svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: var(--neutral-500);
}

.mt-icon-btn.is-active svg {
	fill: #cc0000;
	stroke: #cc0000;
	color: #cc0000;
}

.mt-single-media {
	margin-bottom: 4rem;
}

.mt-single-media-inner {
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.mt-single-featured-figure {
	margin: 0;
}

.mt-single-media-inner img,
img.mt-single-hero-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* Legenda (campo Legenda no media library / biblioteca de media) */
.mt-single-media-caption {
	display: block;
	padding: 1rem 1.25rem 1.25rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--neutral-500);
	font-weight: 500;
	background: #fff;
}

.mt-related {
	padding-top: 4rem;
	border-top: 2px solid var(--neutral-100);
	max-width: 56rem;
	margin: 0 auto;
}

.mt-related__title {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 2.5rem;
}

.mt-comments-shell {
	max-width: 42rem;
	margin: 4rem auto 0;
}

/* Jogos */
.mt-page-intro {
	margin-bottom: 3rem;
}

.mt-section-mb {
	margin-bottom: 4rem;
}

.mt-kicker-heading {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--neutral-400);
	margin-bottom: 2rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--neutral-100);
}

.mt-comp-fixtures-block .mt-kicker-heading {
	margin-bottom: 1.25rem;
}

.mt-fixture-subkicker {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--neutral-500);
	margin: 1.5rem 0 0.75rem;
}

.mt-comp-fixtures-block .mt-fixture-subkicker:first-of-type {
	margin-top: 0;
}

.mt-comp-fixtures-block .mt-stack-gap + .mt-fixture-subkicker {
	margin-top: 2rem;
}

.mt-stack-gap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mt-fixtures-pager.is-loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.mt-fixtures-pager__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.25rem;
}

.mt-fixtures-pager__btn {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 9999px;
	padding: 0.5rem 1.1rem;
	border: 1px solid var(--neutral-200);
	background: #fff;
	color: var(--neutral-800);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.mt-fixtures-pager__btn:hover:not(:disabled) {
	background: var(--neutral-50);
	border-color: var(--neutral-300);
}

.mt-fixtures-pager__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.mt-fixtures-pager__status {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--neutral-500);
	min-width: 8rem;
	text-align: center;
}

.mt-hint-muted {
	color: var(--neutral-500);
}

.mt-match-card--dim {
	opacity: 0.85;
}

/* Card de jogo agendado (fundo escuro, referência calendário) */
.mt-fixture-card {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 10px 25px -10px rgb(0 0 0 / 0.5);
}

.mt-fixture-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.75rem 1rem;
	padding-bottom: 1.125rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mt-fixture-side {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	min-width: 0;
}

.mt-fixture-side--home {
	justify-content: flex-start;
}

.mt-fixture-side--away {
	justify-content: flex-end;
}

.mt-fixture-name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: min(10rem, 32vw);
}

.mt-fixture-crest {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mt-fixture-crest img {
	width: 2.25rem;
	height: 2.25rem;
	object-fit: contain;
}

.mt-fixture-crest__ph {
	font-size: 0.875rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
}

.mt-fixture-center {
	text-align: center;
	min-width: 5rem;
}

.mt-fixture-kickoff {
	display: block;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}

.mt-fixture-rel {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #737373;
}

.mt-fixture-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #a3a3a3;
}

.mt-fixture-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 100%;
}

.mt-fixture-meta__item--tv {
	flex-wrap: wrap;
}

.mt-fixture-meta__ico {
	flex-shrink: 0;
	opacity: 0.85;
}

.mt-fixture-meta__tvtext {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 12rem;
}

.mt-fixture-meta__badge {
	flex-shrink: 0;
	background: #3b82f6;
	color: #0f172a;
	font-size: 10px;
	font-weight: 800;
	padding: 0.15rem 0.45rem;
	border-radius: 9999px;
	line-height: 1.2;
}

@media (max-width: 560px) {
	.mt-fixture-top {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.mt-fixture-center {
		order: -1;
	}

	.mt-fixture-side--home,
	.mt-fixture-side--away {
		justify-content: space-between;
	}

	.mt-fixture-name {
		max-width: none;
	}
}

.mt-match-result-row {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	width: 100%;
}

.mt-match-team-result {
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
}

.mt-match-score {
	font-size: 1.875rem;
	font-weight: 900;
}

.mt-match-result-foot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
	letter-spacing: 0.1em;
}

/* Tabela */
.mt-tabela-hero {
	margin-bottom: 3rem;
	text-align: center;
}

.mt-table-scroll {
	overflow-x: auto;
}

.mt-cell-team-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mt-escudo-wrap {
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	background: var(--neutral-100);
	padding: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
}

.mt-escudo-wrap img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}

.mt-td-strong {
	font-weight: 700;
}

.mt-td-muted {
	color: var(--neutral-400);
}

.mt-tabela-legend {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.mt-legend-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--neutral-400);
}

.mt-legend-swatch {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 2px;
}

.mt-legend-swatch--lib {
	background: #ecfdf5;
	border: 1px solid #bbf7d0;
}

.mt-legend-swatch--prelib {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
}

.mt-legend-swatch--sula {
	background: #fffbeb;
	border: 1px solid #fde68a;
}

.mt-legend-swatch--rebaix {
	background: #fef2f2;
	border: 1px solid #fecaca;
}

.mt-legend-swatch--spfc {
	background: rgba(227, 6, 19, 0.1);
	border: 1px solid rgba(227, 6, 19, 0.2);
}

/* Sidebar home */
.mt-widget-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.mt-widget-row--loose {
	margin-bottom: 1.5rem;
}

.mt-widget-label {
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
	letter-spacing: 0.1em;
}

.mt-widget-label--dark {
	color: var(--neutral-500);
}

.mt-widget-status {
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-400);
}

.mt-widget-scoreboard {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.mt-widget-team-slot {
	text-align: center;
	width: 6rem;
}

.mt-widget-escudo {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--neutral-100);
	border-radius: 9999px;
	margin: 0 auto 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
}

.mt-widget-escudo img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.mt-widget-team-name {
	font-size: 10px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mt-widget-score-mid {
	font-size: 1.5rem;
	font-weight: 700;
}

.mt-widget-more-link {
	display: block;
	text-align: center;
	font-size: 9px;
	font-weight: 700;
	color: var(--neutral-400);
	letter-spacing: 0.1em;
	margin-top: 0.5rem;
}

.mt-widget-next-kicker {
	font-size: 10px;
	font-weight: 700;
	opacity: 0.8;
	letter-spacing: 0.1em;
}

.mt-widget-next-stack {
	margin-top: 1rem;
}

.mt-widget-next-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.mt-widget-next-sub {
	font-size: 0.75rem;
	opacity: 0.9;
	font-weight: 500;
}

.mt-widget-next-actions {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mt-widget-chip {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
}

.bento-button--on-red {
	background: #fff;
	color: var(--color-spfc-red);
	border: none;
}

.mt-striker-kicker {
	font-size: 10px;
	font-weight: 700;
	color: var(--neutral-500);
	letter-spacing: 0.1em;
}

.mt-striker-row {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mt-striker-goals {
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.mt-striker-name-sm {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.mt-striker-name-lg {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-spfc-red);
	line-height: 1;
	margin-top: 0.25rem;
}

.mt-striker-bar {
	margin-top: 1.5rem;
	height: 4px;
	width: 100%;
	background: var(--neutral-800);
	border-radius: 9999px;
	overflow: hidden;
}

.mt-striker-bar-fill {
	height: 100%;
	background: var(--color-spfc-red);
	width: 85%;
}

.mt-striker-bar-foot {
	margin-top: 0.75rem;
	display: flex;
	justify-content: space-between;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--neutral-500);
}

.mt-mini-table-link {
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
}

.mt-mini-table-rows {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 0.75rem;
}

.mt-mini-table-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem;
	border-radius: 0.75rem;
	color: var(--neutral-400);
}

.mt-mini-table-row.is-highlight {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.mt-mini-pos {
	width: 1rem;
	font-weight: 700;
}

.mt-mini-pos.is-spfc {
	color: var(--color-spfc-red);
	font-size: 0.875rem;
}

.mt-mini-escudo {
	width: 1.25rem;
	height: 1.25rem;
	object-fit: contain;
}

.mt-mini-name {
	flex: 1;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mt-mini-pts {
	font-weight: 700;
}

.mt-mini-pts.is-spfc {
	color: var(--color-spfc-red);
	font-size: 0.875rem;
}

/* Utilities */
.mt-text-center { text-align: center; }
.mt-spinner {
	width: 2.5rem;
	height: 2.5rem;
	border: 4px solid var(--color-spfc-red);
	border-top-color: transparent;
	border-radius: 9999px;
	animation: mt-spin 0.8s linear infinite;
	margin: 4rem auto;
}

@keyframes mt-spin {
	to { transform: rotate(360deg); }
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Barra de leitura (single) */
.mt-single-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--color-spfc-red);
	z-index: 99998;
	transform-origin: left center;
	transform: scaleX(0);
	pointer-events: none;
}

body.admin-bar .mt-single-progress {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .mt-single-progress {
		top: 46px;
	}
}

/* Tipografia e leitura em ecrãs pequenos */
@media (max-width: 767px) {
	.mt-article {
		padding: 1.25rem 0.75rem 5rem;
	}

	.mt-article h1 {
		font-size: clamp(1.5rem, 6.5vw, 2.125rem);
		line-height: 1.08;
		margin-bottom: 1.25rem;
	}

	.mt-single-lede p {
		font-size: 1.0625rem;
		line-height: 1.55;
	}

	.mt-prose {
		font-size: 1rem;
		line-height: 1.72;
	}

	.mt-single-media-inner {
		border-radius: 1.25rem;
	}

	.mt-single-media-caption {
		font-size: 0.75rem;
		padding: 0.75rem 1rem 1rem;
	}

	.mt-page-title {
		font-size: clamp(1.75rem, 8vw, 2.75rem);
	}

	.mt-page-sub {
		font-size: 1rem;
	}

	.mt-site-title {
		font-size: 1.125rem;
	}

	.mt-breadcrumbs__current {
		max-width: 100%;
		white-space: normal;
		word-break: break-word;
		line-height: 1.35;
	}

	.mt-cat-scroll a,
	.mt-cat-scroll .menu-item a {
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.mt-single-byline {
		flex-direction: column;
		align-items: stretch;
	}

	.mt-single-share-bar {
		justify-content: flex-start;
	}
}
