:root {
	/* === IDENTIDADE VISUAL MF v1.0 === */

	/* Primárias */
	--mf-azul:    #0B2C5B;
	--mf-verde:   #1F7A3A;
	--mf-amarelo: #F4C20D;

	/* Neutros */
	--mf-creme:    #F5EFE2;
	--mf-offwhite: #FAF7F0;
	--mf-tinta:    #1A1A1A;

	/* Escalas azul */
	--mf-azul-900: #061A38;
	--mf-azul-700: #0B2C5B;
	--mf-azul-500: #1E4D8B;
	--mf-azul-300: #6F8FBE;
	--mf-azul-100: #D4DEEE;

	/* Escalas verde */
	--mf-verde-900: #0F4A22;
	--mf-verde-700: #1F7A3A;
	--mf-verde-500: #3FA85B;
	--mf-verde-300: #8FCFA1;
	--mf-verde-100: #DBEFDF;

	/* Escalas amarelo */
	--mf-amarelo-900: #8A6B00;
	--mf-amarelo-700: #C29A00;
	--mf-amarelo-500: #F4C20D;
	--mf-amarelo-300: #F8D85B;
	--mf-amarelo-100: #FCEEAE;

	/* Tokens semânticos */
	--color-primary:    var(--mf-azul);
	--color-secondary:  var(--mf-verde);
	--color-accent:     var(--mf-amarelo);
	--color-bg:         var(--mf-offwhite);
	--color-bg-alt:     var(--mf-creme);
	--color-text:       var(--mf-tinta);
	--color-text-muted: #6E6E6E;
	--color-border:     #E6E2D7;
	--color-success:    var(--mf-verde-500);
	--color-warning:    var(--mf-amarelo);
	--color-danger:     #B91C1C;

	/* Aliases legados — mantém compatibilidade com código existente */
	--primary-color:   var(--mf-azul);
	--secondary-color: var(--mf-amarelo);
	--accent-color:    var(--mf-amarelo);
	--dark-color:      var(--mf-azul-900);
	--light-color:     var(--mf-creme);
}

body {
	font-family: 'Archivo', system-ui, sans-serif;
	overflow-x: hidden;
	background-color: var(--mf-offwhite);
	color: var(--mf-tinta);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-weight: 900;
}

/* Navbar Custom */
.navbar {
	transition: all 0.3s ease;
	padding: 1rem 0;
}

.navbar.scrolled {
	background: rgba(0, 0, 0, 0.95) !important;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
}

.navbar-brand {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-weight: 900;
	font-size: 1.5rem;
	color: var(--mf-offwhite) !important;
}

.nav-link {
	font-weight: 600;
	color: #ffffff !important;
	transition: color 0.3s;
	position: relative;
}

.nav-link:hover {
	color: var(--secondary-color) !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: all 0.3s;
	transform: translateX(-50%);
}

.nav-link:hover::after {
	width: 80%;
}

/* Hero Section */
.hero-section {
	background: var(--mf-azul-900);
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 60%, var(--mf-azul-500) 100%);
	min-height: 90vh;
	color: var(--mf-offwhite);
	position: relative;
	overflow: hidden;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(244, 194, 13, 0.1) 0%, transparent 50%);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	opacity: 0.9;
}

.btn-custom-primary {
	background: var(--secondary-color);
	color: white;
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-custom-primary:hover {
	background: #c7a003;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	color: white;
}

.btn-custom-outline {
	border: 2px solid white;
	color: white;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s;
}

.btn-custom-outline:hover {
	background: white;
	color: var(--primary-color);
}

/* Ações da Semana */
.acoes-section {
	background: linear-gradient(to bottom, var(--mf-offwhite) 0%, #ffffff 100%);
}

.acao-card {
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s;
	background: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.acao-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.acao-img {
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s;
}

.acao-card:hover .acao-img {
	transform: scale(1.1);
}

.acao-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--accent-color);
	color: var(--dark-color);
	font-weight: 700;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
}

/* Notícias */
.noticias-section {
	background: var(--mf-creme);
}

.noticia-card {
	border: none;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s;
	height: 100%;
}

.noticia-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.noticia-img-wrapper {
	overflow: hidden;
	position: relative;
}

.noticia-img {
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s;
	width: 100%;
}

.noticia-card:hover .noticia-img {
	transform: scale(1.1);
}

.noticia-date {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background: var(--primary-color);
	color: white;
	padding: 8px 15px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
}

/* Vídeos */
.videos-section {
	background: white;
}

.video-card {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.video-card:hover .video-overlay {
	background: rgba(0, 0, 0, 0.6);
}

.play-btn {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.video-card:hover .play-btn {
	transform: scale(1.1);
	background: var(--secondary-color);
}

.play-btn i {
	color: var(--primary-color);
	font-size: 2rem;
	margin-left: 5px;
}

.video-card:hover .play-btn i {
	color: white;
}

/* Galeria */
.galeria-section {
	background: var(--mf-creme);
}

.galeria-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
}

.galeria-item img {
	transition: transform 0.5s;
	height: 250px;
	object-fit: cover;
	width: 100%;
}

.galeria-item:hover img {
	transform: scale(1.1);
}

.galeria-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 20px;
	color: white;
	transform: translateY(100%);
	transition: transform 0.3s;
}

.galeria-item:hover .galeria-overlay {
	transform: translateY(0);
}

/* Instagram Feed */
.instagram-section {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: white;
}

.insta-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 1;
}

.insta-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.insta-item:hover img {
	transform: scale(1.1);
}

.insta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
	opacity: 1;
}

/* Sobre */
.sobre-section {
	background: var(--mf-offwhite);
}

.sobre-img {
	border-radius: 20px;
	box-shadow: 20px 20px 0 var(--primary-color);
}

/* Stats */
.stat-item {
	text-align: center;
	padding: 30px;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary-color);
	display: block;
}

/* Footer */
.footer {
	background: var(--mf-azul-900);
	color: white;
}

.footer-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-link:hover {
	color: var(--accent-color);
}

.social-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s;
	margin: 0 5px;
	text-decoration: none;
}

.social-icon:hover {
	background: var(--secondary-color);
	transform: translateY(-3px);
	color: white;
}

/* Variantes de cor para redes sociais (contato page) */
.social-icon-fb    { background: #1877f2 !important; }
.social-icon-insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.social-icon-yt    { background: #ff0000 !important; }
.social-icon-wa    { background: #25d366 !important; }
.social-icon-tw    { background: #000000 !important; }
.social-icon-tt    { background: #010101 !important; }
.social-icon-tg    { background: #2AABEE !important; }
.social-icon-fb:hover,
.social-icon-insta:hover,
.social-icon-yt:hover,
.social-icon-wa:hover {
	opacity: 0.85;
	background: unset;
}

/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #25d366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: all 0.3s;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1) rotate(10deg);
	color: white;
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Section Headers */
.section-header {
	position: relative;
	margin-bottom: 50px;
}

.section-title {
	font-size: 2.5rem;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.section-subtitle {
	color: #666;
	font-size: 1.1rem;
}

.title-decoration {
	width: 80px;
	height: 4px;
	background: var(--secondary-color);
	margin: 0 auto;
	border-radius: 2px;
}

/* Cards */
.card {
	border: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Timeline */
.timeline {
	position: relative;
	padding: 20px 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--primary-color);
	transform: translateX(-50%);
}

.timeline-item {
	margin-bottom: 30px;
	position: relative;
}

.timeline-badge {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.timeline-panel {
	width: 45%;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}

.timeline-item:nth-child(odd) .timeline-panel {
	margin-left: auto;
}

/* Depoimentos */
.depoimento-card {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
}

.depoimento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.depoimento-avatar {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto 1rem;
}

/* Agenda */
.agenda-card {
	border-left: 4px solid var(--primary-color);
	transition: all 0.3s;
}

.agenda-card:hover {
	border-left-color: var(--secondary-color);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Controls */
.form-control:focus {
	border-color: var(--mf-azul);
	box-shadow: 0 0 0 0.2rem rgba(11, 44, 91, 0.25);
}

/* Breadcrumb */
.breadcrumb {
	background: transparent;
	padding: 0;
}

.breadcrumb-item a {
	color: var(--primary-color);
	text-decoration: none;
}

.breadcrumb-item a:hover {
	color: var(--secondary-color);
}

/* Pagination */
.pagination {
	gap: .4rem;
}
.pagination .page-link {
	width: 42px;
	height: 42px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50% !important;
	border: 1.5px solid #dee2e6;
	font-weight: 600;
	font-size: .9rem;
	color: var(--primary-color);
	background: #fff;
	transition: all .2s ease;
	line-height: 1;
}
.pagination .page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
	box-shadow: 0 4px 14px rgba(11,44,91,.3);
}
.pagination .page-item.disabled .page-link {
	background: #f5f5f5;
	border-color: #e9ecef;
	color: #adb5bd;
}
.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(11,44,91,.2);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-badge {
		left: 20px;
	}

	.timeline-panel {
		width: calc(100% - 60px);
		margin-left: 60px !important;
	}

	.navbar-collapse {
		background: white;
		padding: 1rem;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		margin-top: 10px;
	}
}

/* Loading Animation */
.skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

/* Construtor de página */
.conteudo-noticia img,
.conteudo-pagina img {
	max-width: 100%;
	height: auto;
}

/* Utilities */
.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.bg-primary {
	background-color: var(--primary-color) !important;
}

.bg-secondary {
	background-color: var(--secondary-color) !important;
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: var(--mf-azul-500);
	border-color: var(--mf-azul-500);
}

.btn-secondary {
	background-color: var(--mf-verde);
	border-color: var(--mf-verde);
	color: var(--mf-offwhite);
}

.btn-secondary:hover {
	background-color: var(--mf-verde-500);
	border-color: var(--mf-verde-500);
	color: var(--mf-offwhite);
}

/* Page Header */
.page-header {
	background: var(--mf-azul-900);
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 100%);
	padding: 120px 0 60px;
	color: white;
	position: relative;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 20% 60%, rgba(31,122,58,0.18) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 30%, rgba(244,194,13,0.08) 0%, transparent 55%);
}

.page-header-content {
	position: relative;
	z-index: 1;
}

/* ============================================
   HERO ENHANCED
   ============================================ */
.hero-section {
	min-height: 100vh;
	padding: 120px 0 100px;
}

.hero-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-particles span {
	position: absolute;
	display: block;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 8%; animation-duration: 18s; }
.hero-particles span:nth-child(2) { width: 40px; height: 40px; top: 65%; left: 82%; animation-duration: 22s; animation-delay: 3s; background: rgba(242,195,3,0.12); }
.hero-particles span:nth-child(3) { width: 110px; height: 110px; top: 78%; left: 25%; animation-duration: 28s; animation-delay: 6s; }
.hero-particles span:nth-child(4) { width: 55px; height: 55px; top: 8%; left: 68%; animation-duration: 20s; animation-delay: 2s; background: rgba(242,195,3,0.08); }
.hero-particles span:nth-child(5) { width: 30px; height: 30px; top: 45%; left: 55%; animation-duration: 25s; animation-delay: 8s; }

@keyframes particleFloat {
	0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--secondary-color);
	border-radius: 50%;
	flex-shrink: 0;
	animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.15;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
	background: var(--mf-verde);
	color: var(--mf-offwhite);
	border: none;
	padding: 14px 32px;
	font-weight: 700;
	border-radius: 6px;
	transition: all 0.3s;
	font-size: 1rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-hero-primary:hover {
	background: var(--mf-verde-500);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(31, 122, 58, 0.45);
	color: var(--mf-offwhite);
	outline: 2px solid var(--mf-amarelo);
	outline-offset: 2px;
}

.btn-hero-outline {
	border: 2px solid rgba(255, 255, 255, 0.65);
	color: white;
	padding: 14px 32px;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.3s;
	background: transparent;
	font-size: 1rem;
	text-decoration: none;
	display: inline-block;
}

.btn-hero-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: white;
	color: white;
}

/* Hero Stats */
.hero-stats {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-value {
	font-size: 2rem;
	font-weight: 800;
	font-family: 'Archivo Black', system-ui, sans-serif;
	line-height: 1;
	color: var(--secondary-color);
}

.hero-stat-label {
	font-size: 0.75rem;
	opacity: 0.75;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 5px;
}

.hero-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.25);
	align-self: center;
}

/* Hero Photo */
.hero-photo-wrapper {
	position: relative;
	width: 400px;
	height: 480px;
}

.hero-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 40% 40% 50% 50% / 20% 20% 30% 30%;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-photo-placeholder {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8rem;
	color: rgba(255, 255, 255, 0.4);
}

/* Floating Cards */
.hero-float-card {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	min-width: 185px;
}

.hero-float-top {
	top: 15px;
	right: -20px;
	animation: floatUp 7s ease-in-out infinite;
}

.hero-float-bottom {
	bottom: 50px;
	left: -30px;
	animation: floatUp 7s ease-in-out infinite;
	animation-delay: 3.5s;
}

@keyframes floatUp {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-10px); }
}

.hfc-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
}

.hfc-title {
	font-size: 0.68rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1;
}

.hfc-value {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a1a1a;
	font-family: 'Archivo Black', system-ui, sans-serif;
	margin-top: 3px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.hero-scroll-indicator a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.72rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.3s;
}

.hero-scroll-indicator a:hover { color: var(--secondary-color); }

.scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 6px;
}

.scroll-wheel {
	width: 4px;
	height: 8px;
	background: var(--secondary-color);
	border-radius: 2px;
	animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
	0%   { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(14px); }
}

/* ============================================
   SECTION TAGS
   ============================================ */
.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--mf-verde-100);
	color: var(--mf-verde-900);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 5px 16px;
	border-radius: 20px;
	margin-bottom: 0.5rem;
}

.section-tag-light {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   NOTÍCIAS ENHANCED
   ============================================ */
.noticia-featured-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 35px rgba(0, 0, 0, 0.07);
	transition: all 0.4s;
}

.noticia-featured-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.noticia-featured-img {
	height: 320px;
	object-fit: cover;
	width: 100%;
	display: block;
	transition: transform 0.6s;
}

.noticia-featured-card:hover .noticia-featured-img {
	transform: scale(1.04);
}

.noticia-category-badge {
	background: var(--mf-verde-100);
	color: var(--mf-verde-900);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 4px 12px;
	border-radius: 20px;
}

.noticia-mini-card {
	background: white;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	transition: all 0.3s;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.noticia-mini-card:hover {
	transform: translateX(4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.noticia-mini-img {
	width: 110px;
	min-width: 110px;
	height: 100px;
	object-fit: cover;
}

.noticia-mini-body {
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.noticia-mini-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--dark-color);
	line-height: 1.35;
	margin: 0 0 6px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Archivo Black', system-ui, sans-serif;
}

.noticia-mini-date {
	font-size: 0.73rem;
	color: #aaa;
}

/* ============================================
   GALERIA GRID
   ============================================ */
.galeria-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.galeria-grid .galeria-item:first-child {
	grid-column: span 2;
}

.galeria-grid .galeria-item:first-child img {
	height: 340px;
}

.galeria-item img {
	height: 200px;
	border-radius: 12px;
}

/* ============================================
   INSTAGRAM ENHANCED
   ============================================ */
.instagram-section {
	background: #0d0d0d;
	position: relative;
	/* overflow: hidden removido — causava sumiço do conteúdo abaixo */
}

.instagram-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(240,148,51,0.25) 0%, rgba(188,24,136,0.25) 100%);
	pointer-events: none;
}

.btn-insta {
	background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 12px 28px;
	font-weight: 700;
	transition: all 0.3s;
}

.btn-insta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(220, 39, 67, 0.4);
	color: white;
}

/* ============================================
   SOBRE ENHANCED
   ============================================ */
.sobre-section {
	background: var(--mf-offwhite);
}

.sobre-badge-card {
	position: absolute;
	bottom: -15px;
	left: -20px;
	background: white;
	border-radius: 16px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.sobre-badge-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.sobre-badge-label {
	font-size: 0.72rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sobre-badge-value {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--dark-color);
	font-family: 'Archivo Black', system-ui, sans-serif;
}

.sobre-achievements {
	border: 1px solid #f0f0f0;
	border-radius: 16px;
	padding: 1rem 1.5rem;
	background: white;
}

.achievement-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f5f5f5;
}

.achievement-item:last-child { border-bottom: none; }

.achievement-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.95rem;
}

.achievement-text {
	font-size: 0.9rem;
	color: #555;
	font-weight: 500;
	line-height: 1.4;
}

/* ============================================
   AGENDA ENHANCED
   ============================================ */
.agenda-bg {
	background: linear-gradient(180deg, var(--mf-creme) 0%, var(--mf-offwhite) 100%);
}

.agenda-event-card {
	background: white;
	border-radius: 18px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	border-left: 4px solid transparent;
	height: 100%;
}

.agenda-event-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
	border-left-color: var(--primary-color);
}

.agenda-date-box {
	background: var(--primary-color);
	color: white;
	border-radius: 14px;
	padding: 10px 14px;
	text-align: center;
	min-width: 62px;
	flex-shrink: 0;
}

.agenda-date-day {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1;
	font-family: 'Archivo Black', system-ui, sans-serif;
}

.agenda-date-month {
	font-size: 0.62rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.85;
}

.agenda-event-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark-color);
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.agenda-event-meta {
	font-size: 0.78rem;
	color: #999;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.agenda-event-meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* ============================================
   DEPOIMENTOS ENHANCED
   ============================================ */
.depoimentos-section { background: var(--mf-creme); }

.depoimento-card-v2 {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.depoimento-card-v2::before {
	content: '\201C';
	position: absolute;
	top: -5px;
	left: 18px;
	font-size: 7rem;
	color: var(--primary-color);
	opacity: 0.06;
	font-family: Georgia, serif;
	line-height: 1;
	pointer-events: none;
}

.depoimento-card-v2:hover {
	transform: translateY(-7px);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.depoimento-stars {
	color: var(--secondary-color);
	font-size: 0.8rem;
	letter-spacing: 2px;
}

.depoimento-text {
	color: #555;
	font-style: italic;
	line-height: 1.75;
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}

.depoimento-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 1rem;
	border-top: 1px solid #f0f0f0;
}

.depoimento-avatar-v2 {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--primary-color);
	flex-shrink: 0;
}

.depoimento-author-name {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--dark-color);
	margin: 0;
}

.depoimento-author-local {
	font-size: 0.75rem;
	color: #bbb;
	margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 50%, var(--mf-azul-500) 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -60%;
	left: -15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(31, 122, 58, 0.25) 0%, transparent 65%);
	pointer-events: none;
}

.cta-section::after {
	content: '';
	position: absolute;
	bottom: -60%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(244, 194, 13, 0.15) 0%, transparent 65%);
	pointer-events: none;
}

.cta-section .container { position: relative; z-index: 2; }

.btn-whatsapp {
	background: #25d366;
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.3s;
}

.btn-whatsapp:hover {
	background: #20b858;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   RESPONSIVE IMAGES — COBERTURA UNIVERSAL
   Garante que toda imagem em card/section
   sempre preenche o container sem falhas,
   independente da dimensão original do arquivo
   ============================================ */

/* — Wrapper base: altura via aspect-ratio.
     Img usa inset absoluto para preencher 100%.
     O .noticia-date já é position:absolute, continua funcionando. — */
.noticia-img-wrapper {
	position: relative;
	overflow: hidden;
	display: block;
	background-color: #e9ecef;
	aspect-ratio: 16 / 9;
}

.noticia-img-wrapper img,
.noticia-img-wrapper .noticia-img,
.noticia-img-wrapper .noticia-featured-img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
	transition: transform 0.5s;
}

/* — Mini card horizontal (home, sidebar) — */
.noticia-mini-card {
	align-items: stretch;
}

.noticia-mini-img {
	width: 110px !important;
	min-width: 110px !important;
	height: auto !important;
	min-height: 90px;
	object-fit: cover !important;
	object-position: center;
	display: block !important;
	align-self: stretch;
	flex-shrink: 0;
}

/* — Galeria grid (home): o item tem altura fixa, img preenche com inset — */
.galeria-item {
	position: relative;
	overflow: hidden;
	display: block;
	border-radius: 12px;
	background-color: #e9ecef;
}

.galeria-item img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
	border-radius: 12px;
	transition: transform 0.5s;
}

.galeria-grid .galeria-item {
	height: 220px;
}

.galeria-grid .galeria-item:first-child {
	grid-column: span 2;
	height: 340px;
}

/* — Galeria listagem (Galerias/index.php — Bootstrap card) — */
.galeria-section .card .position-relative.overflow-hidden {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	display: block;
	background-color: #e9ecef;
}

.galeria-section .card .position-relative.overflow-hidden > img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
	transition: transform 0.5s;
}

.galeria-section .card .position-relative.overflow-hidden > div:not([class*="position-absolute"]) {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* — Instagram — */
.insta-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: block;
	border-radius: 12px;
	background-color: #1a1a1a;
}

.insta-item img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
	transition: transform 0.3s;
}

/* — Vídeos — */
.video-card {
	background-color: #111;
}

.video-card img {
	display: block;
	width: 100% !important;
	object-fit: cover !important;
	object-position: center;
}

/* — Sobre — */
.sobre-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px;
	box-shadow: 20px 20px 0 var(--primary-color);
}

/* — Avatares de depoimentos — */
.depoimento-avatar {
	width: 80px !important;
	height: 80px !important;
	min-width: 80px;
	object-fit: cover !important;
	object-position: center;
	border-radius: 50% !important;
	display: block;
	margin: 0 auto 1rem;
}

.depoimento-avatar-v2 {
	width: 48px !important;
	height: 48px !important;
	min-width: 48px;
	object-fit: cover !important;
	object-position: center;
	border-radius: 50% !important;
	display: block;
	flex-shrink: 0;
}

/* — Sidebar: imagens de notícias relacionadas — */
.list-group-item img {
	object-fit: cover !important;
	object-position: center;
	border-radius: 6px;
	flex-shrink: 0;
}

.related-thumb {
	width: 60px;
	height: 60px;
	min-width: 60px;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
	flex-shrink: 0;
}

.related-thumb-placeholder {
	width: 60px;
	height: 60px;
	min-width: 60px;
	flex-shrink: 0;
	font-size: 1.2rem;
}

/* — Sidebar newsletter card — */
.sidebar-newsletter-card {
	background: linear-gradient(135deg, var(--mf-azul) 0%, var(--mf-azul-900) 100%);
}

/* ============================================================
   UTILITÁRIOS DE ÍCONE (multi-página)
   ============================================================ */

/* Caixa de ícone genérica — usada em contato, sobre e outras páginas */
.icon-box {
	padding: 0.75rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.icon-box-primary { background: color-mix(in srgb, var(--primary-color) 12%, transparent); color: var(--primary-color); }
.icon-box-dark    { background: color-mix(in srgb, var(--dark-color) 12%, transparent); color: var(--dark-color); }
.icon-box-accent  { background: color-mix(in srgb, var(--secondary-color) 20%, transparent); color: #9a7700; }

/* Cor de texto usando variável do projeto */
.text-brand { color: var(--primary-color) !important; }

/* ============================================================
   SOBRE PAGE
   ============================================================ */

/* Foto placeholder sem imagem */
.sobre-img-placeholder {
	aspect-ratio: 4/5;
	background: var(--primary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Badge flutuante de experiência */
.sobre-exp-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	background: white;
	padding: 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
	transform: translate(-10%, 10%);
}

.sobre-exp-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Caixas de ícone das features (Dedicação, Transparência...) */
.sobre-icon-box {
	padding: 0.6rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.sobre-icon-primary  { background: color-mix(in srgb, var(--primary-color) 12%, transparent); color: var(--primary-color); }
.sobre-icon-dark     { background: color-mix(in srgb, var(--dark-color) 12%, transparent); color: var(--dark-color); }
.sobre-icon-accent   { background: color-mix(in srgb, var(--secondary-color) 20%, transparent); color: #9a7700; }

/* Círculos de ícone das seções MVV */
.sobre-mvv-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sobre-mvv-primary   { background: color-mix(in srgb, var(--primary-color) 12%, transparent); color: var(--primary-color); }
.sobre-mvv-dark      { background: color-mix(in srgb, var(--dark-color) 10%, transparent); color: var(--dark-color); }
.sobre-mvv-accent    { background: color-mix(in srgb, var(--secondary-color) 18%, transparent); color: #9a7700; }

/* Badge da timeline */
.sobre-timeline-badge { background: var(--primary-color); }

/* CTA section */
.sobre-cta-section {
	background: linear-gradient(135deg, var(--mf-azul) 0%, var(--mf-azul-900) 100%);
	color: white;
}

/* — Galeria view: grid de fotos — */
.galeria-foto-item {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 8px;
}

.galeria-foto-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.galeria-foto-item:hover img {
	transform: scale(1.05);
}

/* — Avatar de comentário — */
.comentario-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--primary-color) 15%, transparent);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* — Imagem capa do artigo (Noticias/view.php) — */
.noticia-capa-img {
	display: block;
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
}

/* — Placeholder: galeria sem capa — */
.card-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 200px;
	position: absolute;
	inset: 0;
}

/* — Placeholder: notícia sem imagem — */
.noticia-img-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f0f0f0;
}

/* — Conteúdo editorial — */
.conteudo-noticia img,
.conteudo-pagina img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* — Hero photo — */
.hero-photo {
	object-fit: cover;
	object-position: top center;
}

/* ============================================
   NOTICIAS INDEX — UX/UI APRIMORADO
   ============================================ */

/* Page header com busca integrada */
.noticias-page-header {
	padding-bottom: 3.5rem;
}

.noticias-search-form {
	width: 100%;
}

.noticias-search-input-wrap {
	position: relative;
	display: block;
	background: rgba(255, 255, 255, 0.12);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	padding: 6px 54px 6px 2.75rem;
	backdrop-filter: blur(8px);
	transition: border-color 0.3s, background 0.3s;
}

.noticias-search-input-wrap:focus-within {
	background: rgba(255, 255, 255, 0.18);
	border-color: var(--secondary-color);
}

.noticias-search-icon {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.95rem;
	pointer-events: none;
	line-height: 1;
}

.noticias-search-input {
	display: block;
	width: 100% !important;
	border: none !important;
	background: transparent !important;
	color: white !important;
	padding: 0.55rem 0;
	font-size: 0.95rem;
	box-shadow: none !important;
	border-radius: 0 !important;
	outline: none;
}

.noticias-search-input::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

.noticias-search-input:focus {
	background: transparent !important;
	color: white !important;
}

.noticias-search-btn {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--mf-amarelo);
	color: var(--mf-azul-900);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 700;
	padding: 0;
	transition: background 0.25s, transform 0.2s;
	cursor: pointer;
}

.noticias-search-btn:hover {
	background: var(--mf-amarelo-300);
	transform: translateY(-50%) scale(1.08);
}

.noticias-search-btn:active {
	transform: translateY(-50%) scale(0.95);
}

/* Toolbar de resultados */
.noticias-toolbar {
	background: white;
	border-bottom: 1px solid #f0f0f0;
	padding: 0.75rem 0;
	position: sticky;
	top: 70px;
	z-index: 99;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.noticias-toolbar .btn-sm {
	font-size: 0.75rem;
	padding: 4px 14px;
	border-radius: 20px;
}

/* Card destaque horizontal */
.noticia-featured-h {
	display: flex;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: transform 0.4s, box-shadow 0.4s;
	min-height: 380px;
}

.noticia-featured-h:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.noticia-featured-h-img-wrap {
	width: 52%;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	background: #e9ecef;
}

.noticia-featured-h-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.6s;
}

.noticia-featured-h:hover .noticia-featured-h-img {
	transform: scale(1.05);
}

.noticia-featured-ribbon {
	position: absolute;
	top: 16px;
	left: 0;
	background: var(--mf-amarelo);
	color: var(--mf-azul-900);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 5px 14px 5px 12px;
	border-radius: 0 20px 20px 0;
}

.noticia-featured-h-body {
	padding: 2.5rem 2.5rem 2.5rem 2.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.noticia-featured-h-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8rem;
	color: #aaa;
	margin-bottom: 1rem;
}

.noticia-featured-h-title {
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--dark-color);
	margin-bottom: 1rem;
	font-family: 'Archivo Black', system-ui, sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.noticia-featured-h-summary {
	color: #666;
	line-height: 1.75;
	margin-bottom: 1.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.95rem;
}

/* Card padrão v2 */
.noticia-card-v2 {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.noticia-card-v2:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.noticia-card-v2:hover .noticia-img {
	transform: scale(1.06);
}

.noticia-card-v2-body {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.noticia-card-v2-meta {
	display: flex;
	align-items: center;
	font-size: 0.75rem;
	color: #bbb;
	margin-bottom: 0.75rem;
	gap: 0.5rem;
}

.noticia-card-v2-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark-color);
	line-height: 1.4;
	margin-bottom: 0.6rem;
	font-family: 'Archivo Black', system-ui, sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.noticia-card-v2-summary {
	font-size: 0.875rem;
	color: #777;
	line-height: 1.65;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 1.1rem;
}

.noticia-card-v2-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.85rem;
	border-top: 1px solid #f0f0f0;
}

.noticia-card-v2-readmore {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.2s;
}

.noticia-card-v2:hover .noticia-card-v2-readmore {
	gap: 8px;
}

.noticia-card-v2-readtime {
	font-size: 0.75rem;
	color: #ccc;
}

/* Empty state */
.noticias-empty-icon {
	width: 90px;
	height: 90px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-size: 2.5rem;
	color: #ccc;
}

/* Paginação aprimorada */
.noticias-pagination .pagination .page-link {
	border: 1px solid #e9ecef;
	color: var(--dark-color);
	font-weight: 600;
	font-size: 0.875rem;
	padding: 0.5rem 0.85rem;
	transition: all 0.2s;
}

.noticias-pagination .pagination .page-link:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.noticias-pagination .pagination .active .page-link {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

/* Responsive */
@media (max-width: 991px) {
	.noticia-featured-h {
		flex-direction: column;
		min-height: auto;
	}

	.noticia-featured-h-img-wrap {
		width: 100%;
		min-height: 260px;
	}

	.noticia-featured-h-body {
		padding: 1.75rem;
	}

	.noticia-featured-h-title {
		font-size: 1.35rem;
	}

	.noticias-toolbar {
		top: 60px;
	}
}

@media (max-width: 767px) {
	.noticia-featured-h-img-wrap {
		min-height: 200px;
	}

	.noticia-featured-h-body {
		padding: 1.25rem;
	}

	.noticia-featured-h-title {
		font-size: 1.2rem;
	}

	.noticias-toolbar {
		position: static;
	}
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
	.hero-photo-wrapper { width: 340px; height: 410px; }
}

@media (max-width: 991px) {
	.hero-section { min-height: auto; padding: 120px 0 70px; }
	.hero-title { font-size: 2.6rem; }
	.sobre-img { aspect-ratio: 3 / 2; }

	.galeria-grid { grid-template-columns: repeat(2, 1fr); }
	.galeria-grid .galeria-item:first-child { grid-column: span 2; height: 240px; }
	.galeria-grid .galeria-item { height: 170px; }
}

@media (max-width: 767px) {
	.hero-title { font-size: 2rem; }
	.hero-stat-value { font-size: 1.5rem; }
	.hero-stats { gap: 1rem; }
	.hero-scroll-indicator { display: none; }
	.sobre-badge-card { left: 0; bottom: -10px; }
	.sobre-img { aspect-ratio: 4 / 3; box-shadow: 10px 10px 0 var(--primary-color); }

	.galeria-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
	.galeria-grid .galeria-item:first-child { height: 190px; }
	.galeria-grid .galeria-item { height: 130px; }

	.noticia-mini-img { width: 85px !important; min-width: 85px !important; }
}

/* ============================================
   NAVBAR — GLASSMORPHISM REDESIGN
   ============================================ */
.navbar {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 1rem 0;
}

.navbar {
	background: var(--mf-azul) !important;
}

.navbar.scrolled {
	background: rgba(6, 26, 56, 0.97) !important;
	backdrop-filter: blur(20px) saturate(1.5);
	-webkit-backdrop-filter: blur(20px) saturate(1.5);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
	padding: 0.55rem 0;
}

.navbar-logo {
	height: 48px;
	width: auto;
	transition: height 0.3s;
}

.navbar.scrolled .navbar-logo {
	height: 38px;
}

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

.brand-name {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
	color: var(--mf-offwhite);
	letter-spacing: 2px;
}

.brand-sub {
	font-family: 'Archivo', system-ui, sans-serif;
	font-weight: 500;
	font-size: 0.62rem;
	color: var(--mf-amarelo);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.toggler-icon {
	color: white;
	font-size: 1.6rem;
}

.navbar-toggler {
	border: 1px solid rgba(255,255,255,0.2);
	padding: 6px 10px;
	border-radius: 8px;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 2px rgba(242,195,3,0.4);
}

.nav-link {
	font-weight: 600;
	font-size: 0.87rem;
	color: rgba(255,255,255,0.85) !important;
	transition: color 0.3s;
	padding: 0.5rem 0.85rem !important;
	position: relative;
	letter-spacing: 0.3px;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: all 0.3s;
	transform: translateX(-50%);
	border-radius: 1px;
}

.nav-link:hover,
.nav-link:focus {
	color: var(--secondary-color) !important;
}

.nav-link:hover::after {
	width: 70%;
}

.btn-nav-cta {
	background: var(--mf-verde);
	color: var(--mf-offwhite) !important;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	padding: 8px 22px !important;
	font-size: 0.83rem;
	letter-spacing: 0.3px;
	transition: all 0.3s;
	text-decoration: none;
}

.btn-nav-cta:hover {
	background: var(--mf-verde-500);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(31,122,58,0.4);
	color: var(--mf-offwhite) !important;
}

@media (max-width: 991px) {
	.navbar-collapse {
		background: rgba(6, 26, 56, 0.98);
		backdrop-filter: blur(20px);
		margin-top: 12px;
		padding: 1.5rem;
		border-radius: 16px;
		box-shadow: 0 20px 60px rgba(0,0,0,0.4);
		border: 1px solid rgba(255,255,255,0.1);
	}

	.nav-link::after { display: none; }
	.btn-nav-cta { margin-top: 1rem; display: inline-block; }
}

/* ============================================
   READING PROGRESS BAR
   ============================================ */
.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	z-index: 9999;
	transition: width 0.1s linear;
	width: 0%;
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.news-ticker-bar {
	background: var(--mf-amarelo);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1035;
	overflow: hidden;
	height: 36px;
}

/* Quando o ticker está visível, empurra a navbar para baixo */
body.has-ticker #navbar {
	top: 36px;
}

/* Hero e page-header compensam o ticker extra */
body.has-ticker .hero-section {
	padding-top: calc(120px + 36px);
}

body.has-ticker .page-header {
	padding-top: calc(130px + 36px);
}

.news-ticker-bar .container-fluid {
	display: flex;
	align-items: stretch;
}

.news-ticker-label {
	background: var(--mf-azul);
	color: var(--mf-offwhite);
	padding: 8px 18px;
	font-weight: 800;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	white-space: nowrap;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.news-ticker-wrapper {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.news-ticker-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: tickerScroll 40s linear infinite;
	white-space: nowrap;
	padding: 7px 0;
}

.news-ticker-track:hover {
	animation-play-state: paused;
}

.news-ticker-item {
	padding: 0 2.5rem;
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--mf-azul-900);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.news-ticker-item::before {
	content: '◆';
	margin-right: 2.5rem;
	font-size: 0.5rem;
	opacity: 0.4;
}

.news-ticker-item:hover {
	opacity: 0.7;
	color: var(--dark-color);
}

.news-ticker-close {
	background: none;
	border: none;
	padding: 8px 14px;
	color: var(--mf-azul-900);
	cursor: pointer;
	flex-shrink: 0;
	opacity: 0.5;
	transition: opacity 0.2s;
	font-size: 0.8rem;
}

.news-ticker-close:hover { opacity: 1; }

@keyframes tickerScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ============================================
   NÚMEROS QUE FALAM — ANIMATED COUNTERS
   ============================================ */
.numeros-section {
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 60%, var(--mf-azul-500) 100%);
	position: relative;
	overflow: hidden;
}

.numeros-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(31, 122, 58, 0.18) 0%, transparent 65%);
	pointer-events: none;
}

.numeros-section::after {
	content: '';
	position: absolute;
	bottom: -40%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(244, 194, 13, 0.12) 0%, transparent 65%);
	pointer-events: none;
}

.numeros-section .container { position: relative; z-index: 1; }

.numero-card {
	text-align: center;
	padding: 2.75rem 1.5rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
}

.numero-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(242, 195, 3, 0.3);
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.numero-icon {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--mf-verde) 0%, var(--mf-verde-900) 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.9rem;
	color: white;
	box-shadow: 0 12px 35px rgba(31, 122, 58, 0.45);
	transition: transform 0.4s;
}

.numero-card:hover .numero-icon {
	transform: scale(1.1) rotate(-5deg);
}

.numero-value {
	font-size: 3.2rem;
	font-weight: 900;
	color: white;
	font-family: 'Archivo Black', system-ui, sans-serif;
	line-height: 1;
	margin-bottom: 0.35rem;
}

.numero-suffix {
	color: var(--secondary-color);
}

.numero-label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	margin-top: 0.75rem;
}

/* ============================================
   NEWSLETTER — REDESIGN
   ============================================ */
.newsletter-section {
	background: var(--mf-creme);
}

.newsletter-card {
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 55%, var(--mf-azul-500) 100%);
	border-radius: 28px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	color: white;
}

.newsletter-card::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(242,195,3,0.12) 0%, transparent 70%);
	pointer-events: none;
}

.newsletter-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--mf-verde), var(--mf-verde-900));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: white;
	box-shadow: 0 8px 25px rgba(31,122,58,0.4);
}

.newsletter-form { position: relative; }

.newsletter-input-group {
	display: flex;
	gap: 0;
	border-radius: 50px;
	overflow: hidden;
	background: rgba(255,255,255,0.1);
	border: 1.5px solid rgba(255,255,255,0.2);
	transition: border-color 0.3s;
}

.newsletter-input-group:focus-within {
	border-color: var(--secondary-color);
}

.newsletter-input {
	flex: 1;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	padding: 14px 22px;
	color: white !important;
	font-size: 0.9rem;
	box-shadow: none !important;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }

.newsletter-btn {
	background: var(--mf-amarelo);
	color: var(--mf-azul-900) !important;
	border: none;
	padding: 12px 26px;
	font-weight: 700;
	font-size: 0.87rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.3s;
	border-radius: 0;
}

.newsletter-btn:hover { background: var(--mf-amarelo-300); }

.newsletter-privacy {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.4);
	margin-top: 0.75rem;
	margin-bottom: 0;
}

/* remove CakePHP default form-group wrapper */
.newsletter-input-group .form-group,
.newsletter-input-group div {
	margin: 0 !important;
	display: contents;
}

@media (max-width: 576px) {
	.newsletter-card { padding: 2rem 1.5rem; }
	.newsletter-input-group { border-radius: 14px; flex-direction: column; }
	.newsletter-btn { border-radius: 0 0 12px 12px; }
	.newsletter-input { border-radius: 12px 12px 0 0; }
}

/* ============================================
   FOOTER — REDESIGN
   ============================================ */
.footer {
	background: var(--mf-azul-900);
	color: white;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-title {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--secondary-color);
	margin-bottom: 1.25rem;
	position: relative;
	padding-bottom: 10px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 28px;
	height: 2px;
	background: var(--primary-color);
	border-radius: 1px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	font-size: 0.87rem;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.footer-links a i {
	font-size: 0.7rem;
	color: var(--secondary-color);
	transition: transform 0.3s;
}

.footer-links a:hover {
	color: white;
	padding-left: 4px;
}

.footer-links a:hover i { transform: translateX(3px); }

.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 0.87rem;
	color: rgba(255,255,255,0.55);
}

.footer-contact-icon {
	width: 34px;
	height: 34px;
	background: rgba(255,255,255,0.07);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	flex-shrink: 0;
	font-size: 0.85rem;
}

.btn-whatsapp-footer {
	background: #25d366;
	color: white;
	border: none;
	border-radius: 50px;
	padding: 9px 22px;
	font-weight: 700;
	font-size: 0.84rem;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.btn-whatsapp-footer:hover {
	background: #20b858;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.footer-social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s;
	text-decoration: none;
	font-size: 1rem;
}

.social-icon:hover {
	transform: translateY(-4px);
	color: white;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icon-fb    { background: #1877f2; }
.social-icon-insta { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.social-icon-yt    { background: #ff0000; }
.social-icon-wa    { background: #25d366; }
.social-icon-tw    { background: #000000; }
.social-icon-tt    { background: #010101; border: 1px solid rgba(255,255,255,.15); }
.social-icon-tg    { background: #2AABEE; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding-top: 1.5rem;
	margin-top: 1rem;
}

/* ============================================
   WHATSAPP FLOAT — REDESIGN
   ============================================ */
.whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #25d366;
	color: white;
	border-radius: 50px;
	padding: 12px 20px 12px 16px;
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
	z-index: 1000;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	font-size: 1.5rem;
}

.whatsapp-float-label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.3px;
	display: none;
	white-space: nowrap;
}

.whatsapp-float:hover {
	background: #20b858;
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
	padding-right: 24px;
}

.whatsapp-float:hover .whatsapp-float-label {
	display: block;
}

@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		padding: 14px;
		border-radius: 50%;
		width: 56px;
		height: 56px;
		justify-content: center;
	}
	.whatsapp-float-label { display: none !important; }
	.whatsapp-float:hover { border-radius: 50%; padding: 14px; }
}

/* ============================================
   DEPOIMENTOS — SWIPER CAROUSEL
   ============================================ */
.depoimentos-swiper {
	padding-bottom: 3rem !important;
}

.swiper-pagination-bullet {
	background: var(--primary-color);
	opacity: 0.4;
	width: 8px;
	height: 8px;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	width: 28px;
	border-radius: 4px;
}

/* ============================================
   INSTAGRAM GRID — SIMPLES E CONFIÁVEL
   ============================================ */
.insta-item-simple {
	position: relative;
	width: 100%;
	padding-top: 100%; /* força proporção 1:1 sem depender do grid */
	overflow: hidden;
	border-radius: 10px;
	background: #1a1a1a;
	cursor: pointer;
}

.insta-item-simple img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
	display: block;
}

.insta-item-simple:hover img {
	transform: scale(1.08);
}

.insta-item-simple .insta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.insta-item-simple:hover .insta-overlay {
	opacity: 1;
}

/* ============================================
   HERO SECTION — MELHORIAS
   ============================================ */
.hero-section {
	background: var(--mf-azul-900);
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 55%, var(--mf-azul-500) 100%);
}

/* Overlay decorativo */
.hero-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background:
		radial-gradient(ellipse at 15% 60%, rgba(31,122,58,0.2) 0%, transparent 55%),
		radial-gradient(ellipse at 85% 30%, rgba(244,194,13,0.08) 0%, transparent 55%);
	pointer-events: none;
	z-index: 1;
}

.hero-content { z-index: 2; }

/* ============================================
   BOTÕES GLOBAIS — MELHORIAS
   ============================================ */
.btn-custom-primary {
	background: var(--mf-azul);
	color: var(--mf-offwhite);
	border: none;
	padding: 13px 32px;
	font-weight: 700;
	border-radius: 6px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-size: 0.87rem;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(11,44,91,0.25);
}

.btn-custom-primary:hover {
	background: var(--mf-azul-500);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(11,44,91,0.35);
	color: var(--mf-offwhite);
	outline: 2px solid var(--mf-amarelo);
	outline-offset: 2px;
}

/* ============================================
   PAGE HEADER — MELHORIAS
   ============================================ */
.page-header {
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 60%, var(--mf-azul-500) 100%);
	padding: 130px 0 70px;
	color: white;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 60%, rgba(31,122,58,0.2) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 30%, rgba(244,194,13,0.08) 0%, transparent 55%);
}

.page-header-content {
	position: relative;
	z-index: 1;
}

/* ============================================
   EXTRA RESPONSIVO TICKER + FOOTER
   ============================================ */
@media (max-width: 575px) {
	.news-ticker-label { padding: 7px 12px; font-size: 0.65rem; }
	.news-ticker-item { font-size: 0.75rem; padding: 0 1.5rem; }
	.footer-contact li { font-size: 0.82rem; }
	.footer-title { font-size: 0.75rem; }
}

/* ============================================
   IDENTIDADE MF v1.0 — NOVOS ELEMENTOS
   ============================================ */

/* Faixa tricolor — separador de seções */
.section-tricolor {
	display: block;
	height: 9px;
	background: linear-gradient(to right,
		var(--mf-verde) 0%, var(--mf-verde) 33.33%,
		var(--mf-amarelo) 33.33%, var(--mf-amarelo) 66.66%,
		var(--mf-azul) 66.66%, var(--mf-azul) 100%);
}

/* Faixa tricolor topo da página */
.page-tricolor-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 9999;
	background: linear-gradient(to right,
		var(--mf-verde) 0%, var(--mf-verde) 33.33%,
		var(--mf-amarelo) 33.33%, var(--mf-amarelo) 66.66%,
		var(--mf-azul) 66.66%, var(--mf-azul) 100%);
}

/* Footer — divisor tricolor superior */
.footer-tricolor {
	height: 12px;
	background: linear-gradient(to right,
		var(--mf-verde) 0%, var(--mf-verde) 33.33%,
		var(--mf-amarelo) 33.33%, var(--mf-amarelo) 66.66%,
		var(--mf-offwhite) 66.66%, var(--mf-offwhite) 100%);
}

/* Focus global — acessibilidade */
:focus-visible {
	outline: 2px solid var(--mf-amarelo);
	outline-offset: 2px;
}

/* Botão fantasma (ghost) */
.btn-ghost {
	background: transparent;
	border: 1.5px solid var(--mf-azul);
	color: var(--mf-azul);
	padding: 10px 24px;
	font-weight: 700;
	border-radius: 6px;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-ghost:hover {
	background: var(--mf-azul-100);
	color: var(--mf-azul);
}

/* Links no conteúdo editorial */
.conteudo-noticia a,
.conteudo-pagina a {
	color: var(--mf-azul);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
	transition: text-decoration-color 0.3s;
}

.conteudo-noticia a:hover,
.conteudo-pagina a:hover {
	text-decoration-color: var(--mf-amarelo);
}

/* Depoimentos — barra lateral amarela (citação) */
.depoimento-text {
	border-left: 4px solid var(--mf-amarelo);
	padding-left: 1rem;
	font-style: italic;
	font-weight: 600;
	font-family: 'Archivo', system-ui, sans-serif;
}

/* Badges / tags padrão MF */
.badge-mf {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--mf-verde-100);
	color: var(--mf-verde-900);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 4px 10px;
	border-radius: 4px;
}

/* Tag institucional com estrela */
.tag-institucional {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--mf-verde-700);
}

/* Acao badge — usa amarelo */
.acao-badge {
	background: var(--mf-amarelo) !important;
	color: var(--mf-azul-900) !important;
}

/* Reading progress — azul → amarelo */
.reading-progress {
	background: linear-gradient(90deg, var(--mf-azul), var(--mf-amarelo)) !important;
}

/* Swiper bullets — verde */
.swiper-pagination-bullet-active {
	background: var(--mf-verde) !important;
}

/* Fundos alternativos de seção */
.bg-mf-creme { background-color: var(--mf-creme) !important; }
.bg-mf-offwhite { background-color: var(--mf-offwhite) !important; }
.bg-mf-azul { background-color: var(--mf-azul) !important; }
.bg-mf-verde { background-color: var(--mf-verde) !important; }
.bg-mf-verde-100 { background-color: var(--mf-verde-100) !important; }

/* Texto */
.text-mf-azul { color: var(--mf-azul) !important; }
.text-mf-verde { color: var(--mf-verde) !important; }
.text-mf-amarelo { color: var(--mf-amarelo) !important; }

/* Sublinhado amarelo decorativo */
.underline-amarelo {
	position: relative;
	display: inline-block;
}
.underline-amarelo::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--mf-amarelo);
	border-radius: 2px;
}

/* Ícone de estrela para seções agro/patriotismo */
.star-icon::before {
	content: '★';
	color: var(--mf-amarelo);
	margin-right: 4px;
	font-size: 0.85em;
}

/* ============================================================
   EDITORIAL LAYOUT MF v1.0
   ============================================================ */

/* ── Marquee escuro ──────────────────────────────────────── */
.mf-marquee {
	display: flex;
	align-items: center;
	background: #111;
	color: #fff;
	height: 36px;
	overflow: hidden;
	position: sticky;
	top: 4px; /* abaixo da faixa tricolor */
	z-index: 1050;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mf-marquee__label {
	flex-shrink: 0;
	background: var(--mf-azul);
	color: var(--mf-offwhite);
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 0 14px;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.mf-marquee__track-wrap {
	flex: 1;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}

.mf-marquee__track {
	display: flex;
	gap: 1rem;
	animation: mf-scroll 35s linear infinite;
	width: max-content;
}

.mf-marquee__track:hover { animation-play-state: paused; }

.mf-marquee__pill {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	color: #e8e8e8;
	font-size: 0.78rem;
	font-weight: 500;
	padding: 3px 12px;
	border-radius: var(--radius-full);
	white-space: nowrap;
	text-decoration: none;
	transition: background var(--transition-fast), color var(--transition-fast);
}

.mf-marquee__pill:hover {
	background: var(--mf-amarelo);
	color: var(--mf-azul-900);
	border-color: var(--mf-amarelo);
}

.mf-marquee__close {
	flex-shrink: 0;
	background: none;
	border: none;
	color: rgba(255,255,255,0.5);
	padding: 0 12px;
	height: 100%;
	cursor: pointer;
	font-size: 0.85rem;
	transition: color var(--transition-fast);
}

.mf-marquee__close:hover { color: #fff; }

@keyframes mf-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Navbar desloca-se para baixo do ticker + tricolor */
body.has-ticker #navbar { top: 40px; }

/* ── Section head editorial ─────────────────────────────── */
.mf-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.mf-section-head__left { flex: 1; min-width: 200px; }
.mf-section-head__right { flex-shrink: 0; }

.mf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--mf-verde);
	margin-bottom: 0.5rem;
}

.mf-eyebrow::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 3px;
	background: var(--mf-verde);
	border-radius: 2px;
}

.mf-section-h2 {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 900;
	color: var(--mf-azul);
	line-height: var(--line-height-tight);
	margin-bottom: 0;
}

.mf-section-h2--light { color: var(--mf-offwhite); }

.mf-section-aside {
	font-family: var(--font-sans);
	font-size: 0.95rem;
	color: var(--color-text-muted);
	max-width: 380px;
	line-height: var(--line-height-relaxed);
}

/* ── Hero editorial ─────────────────────────────────────── */
.mf-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 55%, var(--mf-azul-500) 100%);
	overflow: hidden;
	padding-top: 80px;
}

.mf-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 15% 65%, rgba(31,122,58,0.22) 0%, transparent 55%),
		radial-gradient(ellipse at 85% 25%, rgba(244,194,13,0.08) 0%, transparent 50%);
	pointer-events: none;
}

.mf-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	width: 100%;
}

.mf-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--mf-amarelo);
	margin-bottom: 1.25rem;
}

.mf-hero__eyebrow-dot {
	width: 7px; height: 7px;
	background: var(--mf-verde);
	border-radius: 50%;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: .5; transform: scale(1.4); }
}

.mf-hero__h1 {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 900;
	color: var(--mf-offwhite);
	line-height: 1.1;
	margin-bottom: 1.25rem;
}

.mf-hero__lede {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-style: italic;
	color: rgba(250,247,240,0.75);
	line-height: var(--line-height-relaxed);
	margin-bottom: 2rem;
}

.mf-hero__ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.mf-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--mf-verde);
	color: var(--mf-offwhite);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 14px 28px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all var(--transition-normal);
	box-shadow: var(--shadow-verde);
}

.mf-btn-primary:hover {
	background: var(--mf-verde-600);
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(31,122,58,0.3);
	color: var(--mf-offwhite);
}

.mf-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--mf-offwhite);
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 13px 28px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	border: 2px solid rgba(250,247,240,0.45);
	cursor: pointer;
	transition: all var(--transition-normal);
}

.mf-btn-outline:hover {
	background: rgba(250,247,240,0.1);
	border-color: var(--mf-amarelo);
	color: var(--mf-amarelo);
}

.mf-hero__photo-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.mf-hero__photo {
	max-height: 560px;
	width: auto;
	max-width: 100%;
	object-fit: cover;
	object-position: top;
	filter: drop-shadow(0 24px 48px rgba(6,26,56,0.5));
	position: relative;
	z-index: 1;
}

.mf-hero__photo-bg {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 85%;
	background: linear-gradient(135deg, var(--mf-verde-900), var(--mf-verde-700));
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	opacity: 0.35;
}

.mf-hero__statsbar {
	display: flex;
	gap: 0;
	border-top: 1px solid rgba(250,247,240,0.1);
	padding-top: 1.5rem;
	margin-top: 0;
}

.mf-hero__stat {
	flex: 1;
	padding: 0 1.5rem 0 0;
	position: relative;
}

.mf-hero__stat + .mf-hero__stat {
	padding-left: 1.5rem;
	border-left: 1px solid rgba(250,247,240,0.15);
}

.mf-hero__stat-value {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 900;
	color: var(--mf-amarelo);
	line-height: 1;
}

.mf-hero__stat-label {
	font-size: 0.78rem;
	color: rgba(250,247,240,0.6);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.mf-hero__placeholder {
	width: 100%;
	min-height: 420px;
	background: linear-gradient(135deg, var(--mf-azul-800), var(--mf-verde-900));
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	color: rgba(250,247,240,0.2);
}

@media (max-width: 991px) {
	.mf-hero__inner { grid-template-columns: 1fr; }
	.mf-hero__photo-wrap { display: none; }
}

/* ── Notícias editorial ──────────────────────────────────── */
.mf-news-section {
	background: var(--mf-creme);
	padding: 6rem 0;
}

.mf-news-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 1.5rem;
	align-items: stretch;
}

.mf-news-feature {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--mf-azul-900);
	min-height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: var(--shadow-lg);
}

.mf-news-feature__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.6s ease;
}

.mf-news-feature:hover .mf-news-feature__img { transform: scale(1.04); }

.mf-news-feature__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
		rgba(6,26,56,0.95) 0%,
		rgba(6,26,56,0.6) 45%,
		transparent 100%);
}

.mf-news-feature__body {
	position: relative;
	z-index: 2;
	padding: 2rem;
}

.mf-news-cat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--mf-verde);
	color: var(--mf-offwhite);
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	margin-bottom: 0.75rem;
}

.mf-news-cat--amarelo {
	background: var(--mf-amarelo);
	color: var(--mf-azul-900);
}

.mf-news-feature__h2 {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.5vw, 1.65rem);
	font-weight: 900;
	color: var(--mf-offwhite);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.mf-news-feature__lead {
	font-family: var(--font-serif);
	font-size: 0.97rem;
	font-style: italic;
	color: rgba(250,247,240,0.72);
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.mf-news-feature__meta {
	font-size: 0.75rem;
	color: rgba(250,247,240,0.5);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mf-news-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mf-news-item {
	display: flex;
	gap: 1rem;
	align-items: center;
	background: #fff;
	border-radius: var(--radius-md);
	padding: 1rem;
	box-shadow: var(--shadow-sm);
	text-decoration: none;
	transition: box-shadow var(--transition-normal), transform var(--transition-normal);
	border: 1px solid var(--color-border);
	min-height: 90px;
}

.mf-news-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateX(3px);
}

.mf-news-item__thumb {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--radius-sm);
	object-fit: cover;
	background: var(--mf-azul-100);
}

.mf-news-item__thumb-placeholder {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--radius-sm);
	background: var(--mf-azul-100);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mf-azul-300);
	font-size: 1.4rem;
}

.mf-news-item__body { flex: 1; min-width: 0; }

.mf-news-item__title {
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 900;
	color: var(--mf-azul);
	line-height: 1.3;
	margin-bottom: 0.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mf-news-item__date {
	font-size: 0.72rem;
	color: var(--color-text-muted);
}

@media (max-width: 767px) {
	.mf-news-grid { grid-template-columns: 1fr; }
	.mf-news-feature { min-height: 320px; }
}

/* ── Stats / Números ─────────────────────────────────────── */
.mf-stats-section {
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul-700) 55%, var(--mf-azul-500) 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.mf-stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 10% 60%, rgba(31,122,58,0.2) 0%, transparent 50%),
		radial-gradient(ellipse at 90% 30%, rgba(244,194,13,0.08) 0%, transparent 50%);
	pointer-events: none;
}

.mf-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(250,247,240,0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(250,247,240,0.08);
}

.mf-stat-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: rgba(6,26,56,0.25);
	transition: background var(--transition-normal);
	position: relative;
}

.mf-stat-cell:hover { background: rgba(31,122,58,0.12); }

.mf-stat-cell__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--mf-verde-700), var(--mf-verde-500));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--mf-offwhite);
	margin-bottom: 1rem;
	box-shadow: var(--shadow-verde);
}

.mf-stat-cell__icon--amarelo {
	background: linear-gradient(135deg, var(--mf-amarelo-700), var(--mf-amarelo-500));
	color: var(--mf-azul-900);
}

.mf-stat-cell__icon--azul {
	background: linear-gradient(135deg, var(--mf-azul-600), var(--mf-azul-400));
}

.mf-stat-cell__value {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--mf-offwhite);
	line-height: 1;
}

.mf-stat-cell__suffix {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--mf-amarelo);
}

.mf-stat-cell__label {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	color: rgba(250,247,240,0.55);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-top: 0.5rem;
}

@media (max-width: 767px) {
	.mf-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Vídeos editorial ────────────────────────────────────── */
.mf-videos-section {
	background: var(--mf-offwhite);
	padding: 6rem 0;
}

.mf-videos-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 1.5rem;
	align-items: start;
}

/* Destaque */
.mf-video-feature {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--shadow-lg);
	background: #111;
}

.mf-video-feature__thumb {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease, opacity 0.3s;
}

.mf-video-feature:hover .mf-video-feature__thumb {
	transform: scale(1.03);
	opacity: 0.85;
}

.mf-video-feature__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to top, rgba(6,26,56,0.85) 0%, transparent 50%);
}

.mf-play-btn {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--mf-offwhite);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--mf-azul);
	transition: transform var(--transition-normal), box-shadow var(--transition-normal);
	box-shadow: 0 8px 32px rgba(0,0,0,0.35);
	padding-left: 4px;
}

.mf-video-feature:hover .mf-play-btn {
	transform: scale(1.12);
	box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.mf-video-feature__caption {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 1.5rem;
	z-index: 2;
}

.mf-video-feature__title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--mf-offwhite);
	margin-bottom: 0;
	line-height: 1.3;
}

/* Cards laterais — coluna vertical por padrão */
.mf-video-side {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mf-video-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	background: #1a2a45;
	transition: box-shadow var(--transition-normal), transform var(--transition-normal);
	position: relative;
}

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

.mf-video-card__thumb-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.mf-video-card__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mf-video-card:hover .mf-video-card__thumb {
	transform: scale(1.04);
}

.mf-video-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(6,26,56,0.35);
}

.mf-video-card__play-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--mf-azul);
	padding-left: 3px;
}

.mf-video-card__body {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 0.75rem 1rem;
	background: linear-gradient(transparent, rgba(11,44,91,0.92));
}

.mf-video-card__title {
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 900;
	color: #fff;
	line-height: 1.3;
	margin: 0;
	text-shadow: 0 1px 6px rgba(0,0,0,0.5);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Tablet: 2 colunas iguais ── */
@media (max-width: 991px) {
	.mf-videos-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	.mf-video-feature__title { font-size: 1rem; }
}

/* ── Mobile: destaque full + cards em scroll horizontal ── */
@media (max-width: 575px) {
	.mf-videos-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.mf-video-side {
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.5rem;
		gap: 0.75rem;
		/* hide scrollbar but keep scroll */
		scrollbar-width: none;
	}
	.mf-video-side::-webkit-scrollbar { display: none; }

	.mf-video-card {
		flex-shrink: 0;
		width: 260px;
		scroll-snap-align: start;
		transform: none !important;
	}

	.mf-video-card:hover { transform: none !important; }
}

/* ── Sobre editorial ─────────────────────────────────────── */
.mf-about-section {
	background: var(--mf-offwhite);
	padding: 6rem 0;
}

.mf-about__grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 4rem;
	align-items: center;
}

.mf-about__photo-wrap {
	position: relative;
}

.mf-about__photo {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	display: block;
}

.mf-about__badge {
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	background: var(--mf-amarelo);
	color: var(--mf-azul-900);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	box-shadow: var(--shadow-amarelo);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mf-about__badge-icon {
	font-size: 1.6rem;
}

.mf-about__badge-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.75;
}

.mf-about__badge-value {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 900;
}

.mf-about__lede {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--mf-azul-700);
	border-left: 4px solid var(--mf-amarelo);
	padding-left: 1.25rem;
	margin: 1.5rem 0;
	line-height: 1.75;
}

.mf-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin: 1.75rem 0;
}

.mf-pillar {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--mf-azul);
}

.mf-pillar__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mf-verde);
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.mf-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.mf-about__badge { bottom: 1rem; right: 0.5rem; }
}

/* ── Agenda dark ─────────────────────────────────────────── */
.mf-agenda-section {
	background: linear-gradient(180deg, var(--mf-azul-900) 0%, var(--mf-azul) 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.mf-agenda-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 20%, rgba(244,194,13,0.06) 0%, transparent 55%);
	pointer-events: none;
}

.mf-agenda-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.mf-agenda-card {
	background: rgba(250,247,240,0.04);
	border: 1px solid rgba(250,247,240,0.1);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	transition: background var(--transition-normal), border-color var(--transition-normal);
}

.mf-agenda-card:hover {
	background: rgba(250,247,240,0.08);
	border-color: rgba(244,194,13,0.35);
}

.mf-agenda-card__date {
	flex-shrink: 0;
	text-align: center;
	background: var(--mf-amarelo);
	color: var(--mf-azul-900);
	border-radius: var(--radius-md);
	padding: 0.5rem 0.85rem;
	min-width: 56px;
}

.mf-agenda-card__day {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1;
}

.mf-agenda-card__month {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mf-agenda-card__body { flex: 1; min-width: 0; }

.mf-agenda-card__title {
	font-family: var(--font-display);
	font-size: 0.97rem;
	font-weight: 900;
	color: var(--mf-offwhite);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.mf-agenda-card__meta {
	font-size: 0.78rem;
	color: rgba(250,247,240,0.5);
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mf-agenda-card__meta span { display: flex; align-items: center; gap: 5px; }

@media (max-width: 991px) {
	.mf-agenda-grid { grid-template-columns: 1fr; }
}

@media (min-width: 576px) and (max-width: 991px) {
	.mf-agenda-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Depoimentos editorial ───────────────────────────────── */
.mf-testi-section {
	background: var(--mf-creme);
	padding: 6rem 0;
}

.mf-testi-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 2rem;
	height: 100%;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.mf-testi-card__quote {
	font-family: var(--font-serif);
	font-size: 0.97rem;
	font-style: italic;
	color: var(--mf-azul-700);
	line-height: 1.75;
	flex: 1;
	position: relative;
	padding-left: 1.25rem;
	border-left: 3px solid var(--mf-amarelo);
}

.mf-testi-card__stars {
	color: var(--mf-amarelo);
	font-size: 0.85rem;
	letter-spacing: 2px;
}

.mf-testi-card__footer {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding-top: 1rem;
	border-top: 1px solid var(--color-border-light);
}

.mf-testi-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--mf-verde-100);
}

.mf-testi-avatar-placeholder {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--mf-azul);
	color: var(--mf-offwhite);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.mf-testi-card__name {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 900;
	color: var(--mf-azul);
	margin-bottom: 1px;
}

.mf-testi-card__local {
	font-size: 0.72rem;
	color: var(--color-text-muted);
}

/* ── CTA section ─────────────────────────────────────────── */
.mf-cta-section {
	background: linear-gradient(135deg, var(--mf-azul-900) 0%, var(--mf-azul) 60%, var(--mf-azul-500) 100%);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.mf-cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 15% 50%, rgba(31,122,58,0.2) 0%, transparent 50%),
		radial-gradient(ellipse at 85% 50%, rgba(244,194,13,0.1) 0%, transparent 50%);
	pointer-events: none;
}

.mf-cta-section .container { position: relative; z-index: 2; }

.btn-whats-mf {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	padding: 16px 32px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: all var(--transition-normal);
	box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-whats-mf:hover {
	background: #1db954;
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(37,211,102,0.4);
	color: #fff;
}

/* ── Instagram seção ─────────────────────────────────────── */
.mf-insta-section {
	background: var(--mf-creme);
	padding: 5rem 0;
}

/* ── Navbar offset tricolor ──────────────────────────────── */
#navbar { top: 4px !important; } /* faixa tricolor height */

body.has-ticker #navbar {
	top: 40px !important; /* tricolor 4px + marquee 36px */
}

/* ══════════════════════════════════════════════════════════
   v2 OVERRIDES — alinha ao Site Redesign.html
══════════════════════════════════════════════════════════ */

/* Hero: flex-column para stats bar ficar abaixo do grid */
.mf-hero {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.mf-hero > .container {
	flex: 1;
	display: flex;
	align-items: center;
	padding-top: 7rem;
	padding-bottom: 4.5rem;
}

/* Stats bar — regras base (sobrescritas pelo bloco v3 abaixo) */
.mf-hero__statsbar-full {
	position: relative;
	z-index: 2;
}

/* ── Stats section: creme claro + cards brancos ────── */
.mf-stats-section {
	background: var(--mf-creme) !important;
}

.mf-stats-section::before { display: none !important; }

.mf-stats-section .mf-section-h2  { color: var(--mf-azul) !important; }
.mf-stats-section .mf-section-aside{ color: var(--color-text-muted) !important; }
.mf-stats-section .mf-eyebrow      { color: var(--mf-verde) !important; }
.mf-stats-section .mf-eyebrow::before { background: var(--mf-amarelo) !important; }

.mf-stats-grid {
	background: #fff !important;
	border: 1px solid var(--color-border) !important;
	gap: 0 !important;
}

.mf-stat-cell {
	background: #fff !important;
	padding: 3rem 2.5rem !important;
	border-right: 1px solid var(--color-border) !important;
}

.mf-stat-cell:last-child  { border-right: none !important; }
.mf-stat-cell:hover       { background: var(--mf-offwhite) !important; }

/* Ícones por posição — tema claro */
.mf-stat-cell:nth-child(1) .mf-stat-cell__icon {
	background: var(--mf-azul-100) !important;
	color: var(--mf-azul) !important;
	box-shadow: none !important;
}
.mf-stat-cell:nth-child(2) .mf-stat-cell__icon {
	background: var(--mf-verde-100) !important;
	color: var(--mf-verde) !important;
	box-shadow: none !important;
}
.mf-stat-cell:nth-child(3) .mf-stat-cell__icon {
	background: var(--mf-amarelo-100) !important;
	color: var(--mf-amarelo-900) !important;
	box-shadow: none !important;
}
.mf-stat-cell:nth-child(4) .mf-stat-cell__icon {
	background: var(--mf-azul) !important;
	color: var(--mf-amarelo) !important;
	box-shadow: none !important;
}

.mf-stat-cell__value {
	font-size: clamp(2.5rem, 4vw, 4rem) !important;
	color: var(--mf-azul) !important;
}

.mf-stat-cell__suffix {
	color: var(--mf-azul) !important;
	font-size: 1.6rem !important;
}

.mf-stat-cell__label {
	color: var(--color-text-muted) !important;
	margin-top: 0.5rem !important;
	margin-bottom: 0.75rem !important;
}

.mf-stat-cell__desc {
	font-size: 0.82rem;
	color: #5a5a5a;
	line-height: 1.55;
	max-width: 220px;
}

@media (max-width: 991px) {
	.mf-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.mf-stat-cell:nth-child(2) { border-right: none !important; }
	.mf-stat-cell:nth-child(1),
	.mf-stat-cell:nth-child(2) { border-bottom: 1px solid var(--color-border) !important; }
}

@media (max-width: 575px) {
	.mf-stats-grid { grid-template-columns: 1fr !important; }
	.mf-stat-cell  { border-right: none !important; border-bottom: 1px solid var(--color-border) !important; }
	.mf-stat-cell:last-child { border-bottom: none !important; }
}

/* ── News items: coluna de data ─────────────────────── */
.mf-news-item {
	display: grid !important;
	grid-template-columns: 52px 1fr !important;
	align-items: start !important;
	gap: 1.25rem !important;
	padding: 1.25rem 1.5rem !important;
	min-height: auto !important;
	flex-direction: unset !important;
}

.mf-news-item__date-col {
	background: var(--mf-creme);
	border-radius: var(--radius-sm);
	padding: 0.6rem 0.4rem;
	text-align: center;
}

.mf-news-item__date-day {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--mf-azul);
	line-height: 1;
}

.mf-news-item__date-mon {
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--mf-verde);
	margin-top: 2px;
}

.mf-news-item__excerpt {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	margin: 0.2rem 0 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mf-news-item__read {
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--mf-verde);
}

.mf-news-item__read::after { content: ' →'; }

/* ── Depoimentos: marca de aspas ────────────────────── */
.mf-testi-card__qmark {
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 0.7;
	color: var(--mf-amarelo);
	margin-bottom: -1.5rem;
	display: block;
	user-select: none;
}

/* ── Sobre: pillars 3 colunas com borda lateral ─────── */
.mf-pillars {
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 1rem !important;
}

.mf-pillar {
	background: var(--mf-offwhite);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--mf-amarelo) !important;
	border-radius: var(--radius-sm);
	padding: 1.25rem !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 0.3rem !important;
}

.mf-pillar:nth-child(2) { border-left-color: var(--mf-verde) !important; }
.mf-pillar:nth-child(3) { border-left-color: var(--mf-azul)  !important; }
.mf-pillar__dot         { display: none !important; }

.mf-pillar__icon {
	font-size: 1.35rem;
	line-height: 1;
	margin-bottom: 0.2rem;
}

.mf-pillar__title {
	font-family: var(--font-display);
	font-size: 0.93rem;
	font-weight: 900;
	color: var(--mf-azul);
	margin: 0;
}

.mf-pillar__desc {
	font-size: 0.79rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 767px) {
	.mf-pillars { grid-template-columns: 1fr !important; }
}

/* ── Agenda cards: número grande ────────────────────── */
.mf-agenda-card {
	flex-direction: column !important;
	gap: 0.75rem !important;
	border-left: 4px solid var(--mf-amarelo) !important;
	padding: 1.75rem !important;
}

.mf-agenda-card__date {
	background: transparent !important;
	color: inherit !important;
	border-radius: 0 !important;
	padding: 0 !important;
	min-width: auto !important;
	display: flex !important;
	align-items: flex-end !important;
	gap: 0.6rem !important;
}

.mf-agenda-card__day {
	font-family: var(--font-display) !important;
	font-size: 4rem !important;
	font-weight: 900 !important;
	color: var(--mf-amarelo) !important;
	line-height: 0.85 !important;
	letter-spacing: -0.03em !important;
}

.mf-agenda-card__month {
	font-size: 0.85rem !important;
	font-weight: 800 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	color: var(--mf-offwhite) !important;
	margin-bottom: 0.5rem !important;
}

.mf-agenda-card__year {
	font-size: 0.7rem;
	color: var(--mf-azul-100);
	font-family: monospace;
}

@media (max-width: 991px) {
	.mf-agenda-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 575px) {
	.mf-agenda-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════
   v3 OVERRIDES — alinhamento final Site Redesign.html
══════════════════════════════════════════════════════════ */

/* ── Logo HTML component ─────────────────────────────────── */
.mf-logo {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.mf-logo__bar {
	display: flex;
	flex-direction: column;
	border-radius: 1px;
	overflow: hidden;
	flex-shrink: 0;
}

.mf-logo__bar > span {
	display: block;
	width: 8px;
	height: 18px;
}

.mf-logo__name {
	font-family: 'Archivo Black', system-ui, sans-serif;
	font-size: 22px;
	line-height: 0.95;
	letter-spacing: -0.01em;
	color: var(--mf-offwhite);
}

.mf-logo__name span { display: block; color: var(--mf-amarelo); }

/* ── Nav CTA button — amarelo ────────────────────────────── */
.btn-nav-cta {
	background: var(--mf-amarelo) !important;
	color: var(--mf-azul) !important;
	font-weight: 800 !important;
	border-radius: 3px !important;
	letter-spacing: 1px !important;
	font-size: 0.82rem !important;
	text-transform: uppercase !important;
	border: none !important;
	padding: 10px 18px !important;
	transition: transform 0.15s ease;
	box-shadow: none !important;
}

.btn-nav-cta:hover {
	background: var(--mf-amarelo-300) !important;
	color: var(--mf-azul) !important;
	transform: translateY(-1px);
	box-shadow: none !important;
}

/* ── Hero eyebrow — pill badge ───────────────────────────── */
.mf-hero__eyebrow {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	padding: 6px 14px !important;
	border-radius: 999px !important;
	color: var(--mf-amarelo) !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	font-size: 0.68rem !important;
	text-transform: uppercase !important;
	margin-bottom: 1.5rem !important;
}

.mf-hero__eyebrow-dot { display: none !important; }

/* ── Hero h1 em keyword highlight ───────────────────────── */
.mf-hero__h1 em {
	font-style: normal;
	color: var(--mf-amarelo);
	background: linear-gradient(transparent 78%, rgba(244, 194, 13, 0.25) 0);
	padding: 0 4px;
}

/* ── Hero lede — Bitter regular, azul-100 color ─────────── */
.mf-hero__lede {
	font-style: normal !important;
	color: var(--mf-azul-100) !important;
	font-size: 1.18rem !important;
	max-width: 580px;
	font-weight: 400 !important;
	line-height: 1.55 !important;
}

/* ── Hero photo — aspect-ratio 4:5, borda e sombra ─────── */
.mf-hero__photo-bg { display: none !important; }

.mf-hero__photo-wrap { position: relative; }

.mf-hero__photo {
	width: 100% !important;
	height: auto !important;
	max-height: none !important;
	border-radius: 6px !important;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
	object-fit: cover !important;
	aspect-ratio: 4/5;
	filter: none !important;
}

.mf-hero__placeholder {
	border-radius: 6px !important;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
	background: repeating-linear-gradient(45deg, #1E4D8B 0 20px, #163E73 20px 40px) !important;
	min-height: 460px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

/* ── Hero corner tag ─────────────────────────────────────── */
.mf-hero__corner-tag {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--mf-amarelo);
	color: var(--mf-azul);
	padding: 6px 12px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	z-index: 2;
	line-height: 1;
}

/* ── Hero float card ─────────────────────────────────────── */
.mf-hero__float-card {
	position: absolute;
	bottom: 22px;
	left: 22px;
	right: 22px;
	background: var(--mf-offwhite);
	color: var(--mf-tinta);
	padding: 16px 18px;
	border-radius: 4px;
	display: flex;
	gap: 14px;
	align-items: center;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.mf-hero__float-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--mf-verde-500);
	box-shadow: 0 0 0 4px rgba(63, 168, 91, 0.2);
	animation: pulse-dot 2s ease-in-out infinite;
	flex-shrink: 0;
}

.mf-hero__float-label {
	font-size: 0.68rem;
	color: var(--color-text-muted);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.3;
}

.mf-hero__float-value {
	font-weight: 800;
	font-size: 0.87rem;
	line-height: 1.3;
}

/* ── Hero inner grid — 1.1fr/1fr ─────────────────────────── */
.mf-hero__inner {
	grid-template-columns: 1.1fr 1fr !important;
	gap: 4rem !important;
}

/* ── Hero CTA — botão primário amarelo + azul ────────────── */
.mf-hero__ctas .mf-btn-primary {
	background: var(--mf-amarelo) !important;
	color: var(--mf-azul) !important;
	box-shadow: 0 8px 32px rgba(244, 194, 13, 0.35) !important;
}

.mf-hero__ctas .mf-btn-primary:hover {
	background: var(--mf-amarelo-300) !important;
	color: var(--mf-azul) !important;
	transform: translateY(-2px);
}

/* ── Stats bar — full-bleed, sem container Bootstrap ────── */
.mf-hero__statsbar-full {
	border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
	background: rgba(6, 18, 40, 0.72) !important;
	backdrop-filter: blur(6px);
	padding: 2rem 0 !important;
	width: 100% !important;
}

.mf-hero__statsbar-full .mf-stats-row {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
}

.mf-hero__statsbar-full .mf-stat-item {
	padding: 0.5rem 2.5rem !important;
	position: relative !important;
	text-align: left;
}

.mf-hero__statsbar-full .mf-stat-item:first-child { padding-left: 0 !important; }
.mf-hero__statsbar-full .mf-stat-item:last-child  { padding-right: 0 !important; }

.mf-hero__statsbar-full .mf-stat-item + .mf-stat-item::before {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 15% !important;
	bottom: 15% !important;
	width: 1px !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

.mf-hero__statsbar-full .mf-stat-item__value {
	font-family: var(--font-display) !important;
	font-size: clamp(2rem, 3.5vw, 3rem) !important;
	font-weight: 900 !important;
	color: var(--mf-amarelo) !important;
	line-height: 1 !important;
	letter-spacing: -0.02em !important;
	margin-bottom: 0.35rem;
}

.mf-hero__statsbar-full .mf-stat-item__label {
	font-size: 0.65rem !important;
	text-transform: uppercase !important;
	letter-spacing: 2px !important;
	color: rgba(250, 247, 240, 0.55) !important;
	font-weight: 600 !important;
}

@media (max-width: 991px) {
	.mf-hero__statsbar-full .mf-stats-row {
		padding: 0 1.5rem !important;
	}
	.mf-hero__statsbar-full .mf-stat-item {
		padding: 0.5rem 1.5rem !important;
	}
}

@media (max-width: 767px) {
	.mf-hero__statsbar-full .mf-stats-row {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem 0 !important;
	}
	.mf-hero__statsbar-full .mf-stat-item:nth-child(2) { border-left: none; }
	.mf-hero__statsbar-full .mf-stat-item + .mf-stat-item::before { display: none; }
	.mf-hero__statsbar-full .mf-stat-item { padding-left: 1rem !important; }
}

@media (max-width: 479px) {
	.mf-hero__statsbar-full .mf-stats-row {
		grid-template-columns: 1fr 1fr !important;
	}
}

/* ── Section head — eyebrow bar amarelo, h2 maior ───────── */
.mf-eyebrow::before {
	background: var(--mf-amarelo) !important;
	width: 24px !important;
	height: 2px !important;
}

.mf-section-h2 {
	font-size: clamp(2rem, 4vw, 3.2rem) !important;
	line-height: 0.96 !important;
	letter-spacing: -0.015em !important;
}

.mf-section-aside {
	font-family: var(--font-serif) !important;
	font-style: italic !important;
	font-size: 1.1rem !important;
	color: #3A3A3A !important;
}

/* Dark sections: aside text light */
.mf-agenda-section .mf-section-aside { color: var(--mf-azul-100) !important; }

/* ── Notícias section — offwhite bg ─────────────────────── */
.mf-news-section { background: var(--mf-offwhite) !important; }

/* ── Sobre section — branco puro ─────────────────────────── */
.mf-about-section { background: #fff !important; }

/* ── Play button — amarelo ───────────────────────────────── */
.mf-play-btn {
	background: var(--mf-amarelo) !important;
	color: var(--mf-azul) !important;
}

/* ── Videos grid — proporção destaque/side ──────────────── */
.mf-videos-grid { grid-template-columns: 1.6fr 1fr !important; }

@media (max-width: 991px) {
	.mf-videos-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 575px) {
	.mf-videos-grid { grid-template-columns: 1fr !important; }
}

/* ── About photo — bloco amarelo decorativo atrás ───────── */
.mf-about__photo-wrap {
	padding-right: 18px;
	padding-bottom: 18px;
}

.mf-about__photo-wrap::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 140px;
	height: 140px;
	background: var(--mf-amarelo);
	border-radius: 8px;
	z-index: 0;
}

.mf-about__photo {
	position: relative;
	z-index: 1;
	border-radius: 8px !important;
	box-shadow: 0 20px 50px rgba(11, 44, 91, 0.12) !important;
}

.mf-about__badge { z-index: 3; }

/* ── About lede — drop cap, sem borda ───────────────────── */
.mf-about__lede {
	font-family: var(--font-serif) !important;
	font-style: normal !important;
	font-size: 1.12rem !important;
	line-height: 1.65 !important;
	color: #3A3A3A !important;
	border-left: none !important;
	padding-left: 0 !important;
	margin: 0 0 1.5rem !important;
}

.mf-about__lede::first-letter {
	font-family: var(--font-display);
	font-size: 3rem;
	float: left;
	line-height: 0.85;
	margin: 6px 12px 0 0;
	color: var(--mf-azul);
}

/* ── Swiper pagination — verde ───────────────────────────── */
.swiper-pagination-bullet-active { background: var(--mf-verde) !important; }

@media (max-width: 991px) {
	.mf-hero__inner { grid-template-columns: 1fr !important; }
	.mf-about__photo-wrap { padding-right: 0; padding-bottom: 0; }
	.mf-about__photo-wrap::before { display: none; }
}

