/**
 * GiftMed Tema — redesign da home
 * Paleta da logo: Navy #004A99 | Verde #1E8449 | Terracota #C4784A
 */

/* -------------------------------------------------------------------------- */
/* Tokens                                                                     */
/* -------------------------------------------------------------------------- */
:root {
	--gm-navy: #004a99;
	--gm-navy-dark: #003570;
	--gm-navy-soft: #e8f1fb;
	--gm-green: #1e8449;
	--gm-green-dark: #16653a;
	--gm-green-soft: #e8f6ee;
	--gm-terra: #c4784a;
	--gm-terra-soft: #faf0e8;
	--gm-gradient: linear-gradient(135deg, #004a99 0%, #1e8449 100%);
	--gm-white: #ffffff;
	--gm-bg: #f5f7fa;
	--gm-bg-alt: #eef2f7;
	--gm-border: #e2e8f0;
	--gm-text: #1a2332;
	--gm-muted: #5b6b7c;
	--gm-radius: 1rem;
	--gm-radius-lg: 1.5rem;
	--gm-shadow: 0 4px 20px rgba(0, 74, 153, 0.08);
	--gm-shadow-hover: 0 16px 40px rgba(0, 74, 153, 0.14);
	--gm-transition: 0.3s ease;
	--gm-container: 72rem;
	--gm-header-h: 8.3rem;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--gm-header-h) + 1rem);
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gm-text);
	background: var(--gm-white);
	-webkit-font-smoothing: antialiased;
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--gm-navy);
}

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                             */
/* -------------------------------------------------------------------------- */
.gm-container {
	width: min(100% - 2rem, var(--gm-container));
	margin-inline: auto;
}

.gm-section {
	padding: 2.25rem 0;
}

@media (min-width: 768px) {
	.gm-section {
		padding: 3rem 0;
	}
}

.gm-section--soft {
	background: var(--gm-bg);
}

.gm-section--white {
	background: var(--gm-white);
}

.gm-section--dark {
	background: var(--gm-navy-dark);
	color: var(--gm-white);
}

.gm-section--dark h2,
.gm-section--dark h3,
.gm-section--dark h4,
.gm-section--dark h5 {
	color: var(--gm-white);
}

.gm-section__head {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 1.75rem;
}

.gm-section__head p {
	margin-top: 1rem;
	color: var(--gm-muted);
	font-weight: 500;
}

.gm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--gm-green-soft);
	color: var(--gm-green);
	margin-bottom: 0.85rem;
}

.gm-eyebrow--terra {
	background: var(--gm-terra-soft);
	color: var(--gm-terra);
}

.gm-eyebrow--navy {
	background: var(--gm-navy-soft);
	color: var(--gm-navy);
}

.gm-eyebrow--light {
	background: rgba(255, 255, 255, 0.12);
	color: #9fd4b3;
}

.gm-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
}

.gm-title-gradient {
	background: var(--gm-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.gm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.5rem;
	border-radius: var(--gm-radius);
	font-size: 0.9rem;
	font-weight: 700;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform var(--gm-transition), box-shadow var(--gm-transition), background var(--gm-transition), color var(--gm-transition), border-color var(--gm-transition);
}

.gm-btn:hover {
	transform: translateY(-2px);
}

.gm-btn:active {
	transform: translateY(0);
}

.gm-btn--primary {
	background: var(--gm-gradient);
	color: var(--gm-white);
	box-shadow: 0 10px 24px rgba(0, 74, 153, 0.25);
}

.gm-btn--primary:hover {
	box-shadow: 0 14px 32px rgba(30, 132, 73, 0.28);
}

.gm-btn--secondary {
	background: var(--gm-white);
	color: var(--gm-navy);
	border-color: var(--gm-border);
	box-shadow: var(--gm-shadow);
}

.gm-btn--secondary:hover {
	border-color: var(--gm-navy);
	box-shadow: var(--gm-shadow-hover);
}

.gm-btn--accent {
	background: var(--gm-terra);
	color: var(--gm-white);
	box-shadow: 0 10px 24px rgba(196, 120, 74, 0.28);
}

.gm-btn--accent:hover {
	background: #b0663c;
	box-shadow: 0 14px 32px rgba(196, 120, 74, 0.35);
}

.gm-btn--block {
	width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Cards                                                                      */
/* -------------------------------------------------------------------------- */
.gm-card {
	background: var(--gm-white);
	border: 1px solid var(--gm-border);
	border-radius: var(--gm-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--gm-shadow);
	transition: transform var(--gm-transition), box-shadow var(--gm-transition), border-color var(--gm-transition);
}

.gm-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--gm-shadow-hover);
	border-color: rgba(30, 132, 73, 0.25);
}

.gm-card__icon {
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.85rem;
	background: var(--gm-green-soft);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}


.gm-card__title {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.gm-card__text,
.gm-card__text p {
	font-size: 0.875rem;
	color: var(--gm-muted);
	line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* Top bar + Header                                                           */
/* -------------------------------------------------------------------------- */
.gm-topbar {
	background: var(--gm-gradient);
	color: var(--gm-white);
	text-align: center;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.55rem 1rem;
}

.gm-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--gm-header-h);
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gm-border);
	box-shadow: 0 1px 0 rgba(0, 74, 153, 0.04);
	transition: box-shadow var(--gm-transition);
}

.gm-header.is-scrolled {
	box-shadow: var(--gm-shadow);
}

.gm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(100% - 2rem, var(--gm-container));
	margin-inline: auto;
}

.gm-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	transition: opacity var(--gm-transition);
}

.gm-logo:hover {
	opacity: 0.88;
}

.gm-logo__img {
	display: block;
	height: 6.12rem;
	width: auto;
	max-width: min(490px, 80vw);
	object-fit: contain;
}

@media (min-width: 768px) {
	.gm-logo__img {
		height: 7.34rem;
		max-width: 539px;
	}
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo {
	max-height: 44px;
	width: auto;
}

.gm-nav {
	display: none;
}

.gm-nav ul,
.gm-nav .menu {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.gm-nav a,
.gm-nav-link {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--gm-muted);
	position: relative;
	transition: color var(--gm-transition);
}

.gm-nav a::after,
.gm-nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.3rem;
	width: 0;
	height: 2px;
	background: var(--gm-gradient);
	border-radius: 2px;
	transition: width var(--gm-transition);
}

.gm-nav a:hover,
.gm-nav-link:hover {
	color: var(--gm-navy);
}

.gm-nav a:hover::after,
.gm-nav-link:hover::after {
	width: 100%;
}

.gm-header__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.gm-icon-btn {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	background: var(--gm-bg);
	color: var(--gm-muted);
	transition: background var(--gm-transition), color var(--gm-transition), transform var(--gm-transition);
}

.gm-icon-btn:hover {
	background: var(--gm-terra-soft);
	color: var(--gm-terra);
	transform: translateY(-2px);
}

.gm-icon-btn svg {
	width: 1.15rem;
	height: 1.15rem;
}

.gm-header__cta {
	display: none;
}

.gm-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.5rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--gm-bg);
	cursor: pointer;
}

.gm-menu-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--gm-navy);
	border-radius: 2px;
	transition: transform var(--gm-transition), opacity var(--gm-transition);
}

.gm-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.gm-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.gm-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.gm-nav-mobile {
	display: none;
	border-bottom: 1px solid var(--gm-border);
	background: var(--gm-white);
	padding: 1rem 0 1.25rem;
}

.gm-nav-mobile.is-open {
	display: block;
}

.gm-nav-mobile ul {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	width: min(100% - 2rem, var(--gm-container));
	margin-inline: auto;
}

.gm-nav-mobile a {
	display: block;
	padding: 0.75rem 0.5rem;
	font-weight: 700;
	color: var(--gm-text);
	border-radius: 0.5rem;
	transition: background var(--gm-transition), color var(--gm-transition);
}

.gm-nav-mobile a:hover {
	background: var(--gm-navy-soft);
	color: var(--gm-navy);
}

@media (min-width: 1024px) {
	.gm-nav {
		display: block;
	}

	.gm-header__cta {
		display: inline-flex;
	}

	.gm-menu-toggle,
	.gm-nav-mobile {
		display: none !important;
	}
}

/* -------------------------------------------------------------------------- */
/* Hero — Notícias (esquerda) + plataforma (direita), painéis equilibrados    */
/* -------------------------------------------------------------------------- */
.gm-hero {
	--hero-ink: #0f2f44;
	--hero-teal: #0f766e;
	--hero-teal-deep: #115e59;
	--hero-mint: #ccfbf1;
	--hero-sky: #e0f2fe;
	--hero-coral: #ea580c;
	--hero-coral-soft: #ffedd5;
	--hero-card-radius: 1.35rem;
	--hero-card-shadow: 0 14px 34px rgba(15, 47, 68, 0.08);
	--hero-card-border: 1px solid rgba(14, 116, 144, 0.1);

	position: relative;
	overflow: hidden;
	padding: 2.25rem 0 2.5rem;
	background:
		radial-gradient(circle at 18% 12%, rgba(14, 116, 144, 0.1), transparent 42%),
		radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.08), transparent 40%),
		linear-gradient(180deg, #f3fafb 0%, #f8fafc 55%, #f4fbf7 100%);
}

.gm-hero--news .gm-container {
	max-width: var(--gm-container);
}

.gm-hero__news,
.gm-solucao__platform,
.gm-solucao__intro {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.35rem;
	border-radius: var(--hero-card-radius);
	border: var(--hero-card-border);
	box-shadow: var(--hero-card-shadow);
	background: var(--gm-white);
}

.gm-solucao__platform .gm-hero__actions {
	margin-top: auto;
	padding-top: 0.75rem;
}

.gm-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: var(--hero-mint);
	border: 1px solid rgba(15, 118, 110, 0.12);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hero-teal-deep);
	margin-bottom: 0.85rem;
}

.gm-hero__badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--hero-teal);
	box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.45);
	animation: gm-pulse 2s infinite;
}

@keyframes gm-pulse {
	0% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.45); }
	70% { box-shadow: 0 0 0 10px rgba(15, 118, 110, 0); }
	100% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0); }
}

.gm-hero__title {
	font-size: clamp(1.55rem, 3.2vw, 2rem);
	font-weight: 900;
	margin-bottom: 0.75rem;
	color: var(--hero-ink);
	line-height: 1.12;
}

.gm-hero__title-accent {
	background: linear-gradient(120deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gm-hero__lead {
	font-size: 0.92rem;
	color: #475569;
	font-weight: 500;
	max-width: 36rem;
	margin: 0 0 1rem;
	line-height: 1.65;
}

.gm-hero__bullets {
	display: grid;
	gap: 0.55rem;
	margin-bottom: 1.15rem;
	text-align: left;
}

.gm-hero__bullet {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem 0.8rem;
	background: var(--gm-bg);
	border: 1px solid rgba(14, 116, 144, 0.08);
	border-radius: 0.85rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--hero-ink);
	transition: transform var(--gm-transition), box-shadow var(--gm-transition);
}

.gm-hero__bullet:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(15, 47, 68, 0.1);
}

.gm-hero__check {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 0.45rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hero-mint);
	color: var(--hero-teal-deep);
	font-size: 0.75rem;
	font-weight: 800;
}

.gm-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.gm-hero__btn-primary {
	background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
	color: var(--gm-white);
	box-shadow: 0 12px 24px rgba(234, 88, 12, 0.28);
}

.gm-hero__btn-primary:hover {
	box-shadow: 0 16px 30px rgba(234, 88, 12, 0.35);
}

.gm-hero__btn-secondary {
	background: var(--gm-white);
	color: var(--hero-teal-deep);
	border-color: rgba(15, 118, 110, 0.2);
	box-shadow: 0 6px 16px rgba(15, 47, 68, 0.06);
}

.gm-hero__btn-secondary:hover {
	border-color: var(--hero-teal);
	color: var(--hero-teal);
}

/* Hero — apenas Notícias */
.gm-hero--news {
	--gm-news-media-ratio: 4 / 3;
	--gm-news-media-radius: 0.6rem;
	--gm-news-cols: 1;
	--gm-news-gap: 0.5rem;

	padding: 1.35rem 0 1.5rem;
}

.gm-hero__news {
	padding: 0.95rem 1.05rem 1rem;
	background:
		linear-gradient(180deg, rgba(240, 253, 250, 0.95) 0%, #fff 42%),
		var(--gm-white);
	color: var(--hero-ink);
}

.gm-hero--news .gm-news-panel {
	display: grid;
	gap: 0.65rem;
}

.gm-hero--news .gm-news-feed {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
}

.gm-hero--news .gm-news-item--featured {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.75rem;
	padding: 0.5rem;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__media,
.gm-hero--news .gm-news-item--card .gm-news-item__media {
	display: block;
	overflow: hidden;
	border-radius: var(--gm-news-media-radius);
	background: #f1f5f9;
	aspect-ratio: var(--gm-news-media-ratio);
	flex-shrink: 0;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__media {
	flex: 0 0 auto;
	width: calc((100% - (var(--gm-news-cols) - 1) * var(--gm-news-gap)) / var(--gm-news-cols));
}

.gm-hero--news .gm-news-item--card .gm-news-item__media {
	width: 100%;
	max-height: none;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__body {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
	padding: 0;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__title {
	margin-top: 0.2rem;
	font-size: 0.92rem;
	-webkit-line-clamp: 2;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__excerpt {
	-webkit-line-clamp: 1;
	font-size: 0.76rem;
	margin-top: 0.2rem;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__link {
	margin-top: 0.25rem;
	font-size: 0.68rem;
}

.gm-hero--news .gm-news-item--card {
	padding: 0.4rem;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__media img,
.gm-hero--news .gm-news-item--card .gm-news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gm-hero--news .gm-news-item--featured:hover .gm-news-item__media img,
.gm-hero--news .gm-news-item--card:hover .gm-news-item__media img {
	transform: none;
}

.gm-hero--news .gm-news-item--card .gm-news-item__body {
	padding: 0.3rem 0.1rem 0.05rem;
}

.gm-hero--news .gm-news-item--card .gm-news-item__title {
	margin: 0.15rem 0 0;
	font-size: 0.76rem;
	-webkit-line-clamp: 2;
}

.gm-hero--news .gm-hero__news-more {
	justify-self: end;
	width: auto;
}

@media (max-width: 559px) {
	.gm-hero--news .gm-news-item--featured {
		flex-direction: column;
		align-items: stretch;
	}

	.gm-hero--news .gm-news-item--featured .gm-news-item__media {
		width: 100%;
	}
}

@media (min-width: 560px) and (max-width: 899px) {
	.gm-hero--news {
		--gm-news-cols: 2;
		--gm-news-gap: 0.55rem;
	}

	.gm-hero--news .gm-news-feed {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.55rem;
	}

	.gm-hero--news .gm-news-feed .gm-news-item:nth-child(odd):last-child {
		grid-column: 1 / -1;
		max-width: 50%;
		justify-self: center;
		width: 100%;
	}
}

@media (min-width: 900px) {
	.gm-hero--news {
		--gm-news-cols: 4;
		--gm-news-gap: 0.55rem;
	}

	.gm-hero--news .gm-news-panel {
		gap: 0.75rem;
	}

	.gm-hero--news .gm-news-item--featured {
		gap: 0.85rem;
		padding: 0.55rem 0.65rem;
	}

	.gm-hero--news .gm-news-item--featured .gm-news-item__title {
		font-size: clamp(0.95rem, 1.3vw, 1.1rem);
		-webkit-line-clamp: 2;
	}

	.gm-hero--news .gm-news-item--featured .gm-news-item__excerpt {
		-webkit-line-clamp: 1;
		font-size: 0.8rem;
		margin-top: 0.25rem;
	}

	.gm-hero--news .gm-news-feed {
		grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
		gap: 0.55rem;
	}
}

.gm-hero__news-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.7rem;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid rgba(14, 116, 144, 0.1);
}

.gm-hero__news-label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.25rem;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hero-teal);
}

.gm-hero__news-live {
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--hero-teal);
	box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.45);
	animation: gm-pulse 2s infinite;
}

.gm-hero__news-title {
	margin: 0;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--hero-ink);
}

.gm-news-panel {
	display: grid;
	gap: 0.75rem;
	flex: 1;
}

.gm-hero__news-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	margin-top: 0.1rem;
	padding: 0.2rem 0;
	border-radius: 0;
	background: transparent;
	color: var(--gm-muted);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	box-shadow: none;
	transition: color var(--gm-transition), gap var(--gm-transition);
}

.gm-hero__news-more:hover {
	transform: none;
	box-shadow: none;
	gap: 0.45rem;
	color: var(--hero-teal);
}

.gm-news-feed {
	display: grid;
	gap: 0.55rem;
}

.gm-news-item {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	background: var(--gm-white);
	border: 1px solid rgba(14, 116, 144, 0.1);
	transition: transform var(--gm-transition), border-color var(--gm-transition), box-shadow var(--gm-transition);
}

.gm-news-item:hover {
	transform: translateY(-2px);
	border-color: rgba(15, 118, 110, 0.22);
	box-shadow: 0 10px 22px rgba(15, 47, 68, 0.08);
}

.gm-news-item--featured {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	padding: 0.7rem;
	background: linear-gradient(135deg, #f0fdfa 0%, #fff 55%);
}

.gm-news-item--featured .gm-news-item__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 0.85rem;
	overflow: hidden;
	background: var(--hero-sky);
}

.gm-news-item--featured .gm-news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.gm-news-item--featured:hover .gm-news-item__media img {
	transform: scale(1.04);
}

.gm-news-item--featured .gm-news-item__body {
	padding: 0.15rem 0.35rem 0.35rem;
}

.gm-news-item--featured .gm-news-item__title {
	margin-top: 0.35rem;
	font-size: 1.05rem;
	line-height: 1.28;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gm-news-item--featured .gm-news-item__excerpt {
	-webkit-line-clamp: 2;
	font-size: 0.82rem;
	margin-top: 0.35rem;
}

.gm-news-item--featured .gm-news-item__link {
	margin-top: 0.55rem;
}

.gm-news-item--card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0.55rem;
	background: var(--gm-bg);
}

.gm-news-item--card .gm-news-item__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--hero-sky);
	flex-shrink: 0;
}

.gm-news-item--card .gm-news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.gm-news-item--card:hover .gm-news-item__media img {
	transform: scale(1.05);
}

.gm-news-item--card .gm-news-item__body {
	flex: 1;
	min-width: 0;
	padding: 0.55rem 0.2rem 0.2rem;
}

.gm-news-item--card .gm-news-item__title {
	margin: 0.3rem 0 0;
	font-size: 0.84rem;
	line-height: 1.32;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gm-news-item__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.gm-news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.3rem 0.5rem;
}

.gm-news-category {
	display: inline-flex;
	padding: 0.12rem 0.45rem;
	border-radius: 999px;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--gm-green-soft);
	color: var(--gm-green);
	border: 1px solid rgba(30, 132, 73, 0.14);
}

.gm-news-meta time {
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gm-muted);
}

.gm-news-item__title {
	margin: 0.25rem 0 0;
	font-weight: 800;
	color: var(--hero-ink);
}

.gm-news-item__title a {
	color: inherit;
	transition: color var(--gm-transition);
}

.gm-news-item__title a:hover {
	color: var(--hero-teal);
}

.gm-news-item__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0.25rem 0 0;
	font-weight: 500;
	line-height: 1.45;
	color: var(--gm-muted);
}

.gm-news-item__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--hero-teal-deep);
	transition: color var(--gm-transition), gap var(--gm-transition);
}

.gm-news-item__link:hover {
	color: var(--gm-green);
	gap: 0.4rem;
}

/* Hero — imagens uniformes (sobrescreve estilos base acima) */
.gm-hero--news .gm-news-item--featured {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__media,
.gm-hero--news .gm-news-item--card .gm-news-item__media {
	aspect-ratio: var(--gm-news-media-ratio);
}

.gm-hero--news .gm-news-item--featured .gm-news-item__media {
	flex: 0 0 auto;
	width: calc((100% - (var(--gm-news-cols) - 1) * var(--gm-news-gap)) / var(--gm-news-cols));
}

.gm-hero--news .gm-news-item--featured .gm-news-item__body {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
}

.gm-hero--news .gm-news-item--card .gm-news-item__media {
	width: 100%;
	height: auto;
	max-height: none;
}

.gm-hero--news .gm-news-item--featured .gm-news-item__media img,
.gm-hero--news .gm-news-item--card .gm-news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gm-hero__news-empty {
	margin: 0;
	padding: 0.5rem 0;
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--gm-muted);
}

@media (min-width: 640px) {
	.gm-hero__bullets {
		grid-template-columns: 1fr 1fr;
	}

	.gm-hero__actions {
		flex-direction: row;
		justify-content: flex-start;
	}
}

@media (min-width: 1024px) {
	.gm-hero {
		padding: 2.5rem 0 2.75rem;
	}

	.gm-hero__news,
	.gm-solucao__platform,
	.gm-solucao__intro {
		padding: 1.45rem;
	}
}

/* -------------------------------------------------------------------------- */
/* Desafio — tópicos unificados                                               */
/* -------------------------------------------------------------------------- */
.gm-desafio-section {
	position: relative;
	background:
		radial-gradient(circle at 0% 0%, rgba(196, 120, 74, 0.08), transparent 34%),
		radial-gradient(circle at 100% 20%, rgba(0, 74, 153, 0.07), transparent 36%),
		var(--gm-white);
	overflow: hidden;
}

.gm-desafio-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 74, 153, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 74, 153, 0.03) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
	pointer-events: none;
}

.gm-desafio-section > .gm-container {
	position: relative;
	z-index: 1;
}

.gm-topics {
	display: grid;
	gap: 1.25rem;
	align-items: stretch;
}

@media (min-width: 900px) {
	.gm-topics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.gm-topic-card {
	--topic-accent: var(--gm-navy);
	--topic-accent-soft: var(--gm-navy-soft);
	--topic-accent-ink: var(--gm-navy-dark);
	--topic-border: rgba(0, 74, 153, 0.12);

	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.4rem 1.3rem 1.25rem;
	border-radius: 1.25rem;
	background: linear-gradient(180deg, var(--topic-accent-soft) 0%, #fff 42%);
	border: 1px solid var(--topic-border);
	border-top: 4px solid var(--topic-accent);
	box-shadow: var(--gm-shadow);
	overflow: hidden;
	transition: transform var(--gm-transition), box-shadow var(--gm-transition), border-color var(--gm-transition);
}

.gm-topic-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gm-shadow-hover);
}

.gm-topic-card__label {
	margin: 0 0 0.2rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--topic-accent);
}

.gm-topic-card__head {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.8rem;
	min-height: 3.4rem;
}

.gm-topic-card__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 0.8rem;
	font-size: 1.15rem;
	background: #fff;
	border: 1px solid var(--topic-border);
	box-shadow: 0 6px 14px rgba(15, 47, 68, 0.06);
}

.gm-topic-card__head h3 {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--topic-accent-ink);
}

.gm-topic-card__summary {
	margin: 0;
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--gm-muted);
}

.gm-topic-card__list,
.gm-topic-card__points {
	margin-top: auto;
	padding-top: 1rem;
	display: grid;
	gap: 0.5rem;
}

.gm-topic-card__list li,
.gm-topic-card__points li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-height: 3.25rem;
	padding: 0.55rem 0.7rem;
	border-radius: 0.8rem;
	background: #fff;
	border: 1px solid var(--topic-border);
	color: var(--topic-accent-ink);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.35;
	transition: background var(--gm-transition), transform var(--gm-transition), border-color var(--gm-transition);
}

.gm-topic-card__list li:hover,
.gm-topic-card__points li:hover {
	transform: translateX(2px);
}

.gm-topic-card__list li::before {
	content: "✓";
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: var(--topic-accent-soft);
	color: var(--topic-accent);
	font-weight: 900;
	font-size: 0.68rem;
}

.gm-topic-card__point-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 10px rgba(15, 47, 68, 0.1);
	overflow: hidden;
}

.gm-topic-card__point-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gm-topic-card__points li > div {
	min-width: 0;
	flex: 1;
}

.gm-topic-card__points strong {
	display: block;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--topic-accent-ink);
}

.gm-topic-card__points span {
	display: block;
	margin-top: 0.1rem;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--gm-muted);
}

/* Risk — teal */
.gm-topic-card--risk {
	--topic-accent: #0e7490;
	--topic-accent-soft: #ecfeff;
	--topic-accent-ink: #155e75;
	--topic-border: rgba(14, 116, 144, 0.14);
}

/* Scenario — navy */
.gm-topic-card--scenario {
	--topic-accent: var(--gm-navy);
	--topic-accent-soft: var(--gm-navy-soft);
	--topic-accent-ink: var(--gm-navy-dark);
	--topic-border: rgba(0, 74, 153, 0.12);
}

/* Problem — green */
.gm-topic-card--problem {
	--topic-accent: var(--gm-green);
	--topic-accent-soft: var(--gm-green-soft);
	--topic-accent-ink: var(--gm-green-dark);
	--topic-border: rgba(30, 132, 73, 0.14);
}

.gm-topics__support {
	margin-top: 2.75rem;
}

.gm-topics__support-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.35rem;
}

.gm-topics__support-line {
	flex: 1;
	max-width: 6rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 74, 153, 0.25), transparent);
}

.gm-topics__support-title {
	margin: 0;
	text-align: center;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gm-navy);
	white-space: nowrap;
}

.gm-dim-card {
	position: relative;
	text-align: center;
	padding: 1.4rem 1.15rem;
	background: var(--gm-white);
	border: 1px solid var(--gm-border);
	overflow: hidden;
}

.gm-dim-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gm-gradient);
	opacity: 0;
	transition: opacity var(--gm-transition);
}

.gm-dim-card:hover::before {
	opacity: 1;
}

.gm-dim-card .gm-card__icon {
	margin: 0 auto 0.85rem;
	background: linear-gradient(145deg, var(--gm-navy-soft), var(--gm-green-soft));
	border: 1px solid rgba(0, 74, 153, 0.08);
}

.gm-grid-4 {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.gm-grid-4 {
		grid-template-columns: 1fr 1fr;
	}
}

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

/* -------------------------------------------------------------------------- */
/* Solução — Plataforma + Inovação Digital                                    */
/* -------------------------------------------------------------------------- */
.gm-solucao__grid {
	display: grid;
	gap: 1.5rem;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.gm-solucao__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
	}
}

.gm-solucao__platform {
	background:
		linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, #fff 48%),
		var(--gm-white);
}

.gm-solucao__platform .gm-hero__badge {
	align-self: flex-start;
}

.gm-solucao__intro {
	justify-content: flex-start;
}

.gm-solucao__intro .gm-title {
	line-height: 1.15;
	margin-top: 0.15rem;
}

.gm-solucao__lead {
	margin-top: 1.1rem;
	max-width: 38rem;
	color: var(--gm-muted);
	font-weight: 500;
	line-height: 1.75;
	font-size: 1.02rem;
}

.gm-solucao__network {
	margin-top: 1.5rem;
	padding: 1.25rem 1.3rem;
	border-radius: calc(var(--gm-radius) + 0.2rem);
	background: var(--gm-white);
	border: 1px solid var(--gm-border);
	box-shadow: var(--gm-shadow);
	border-left: 4px solid var(--gm-green);
}

.gm-solucao__network strong {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--gm-navy);
	margin-bottom: 0.4rem;
}

.gm-solucao__network > p {
	color: var(--gm-muted);
	font-weight: 500;
	line-height: 1.6;
	font-size: 0.92rem;
}

.gm-solucao__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1rem;
}

.gm-solucao__chips li {
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--gm-navy-soft);
	color: var(--gm-navy);
	font-size: 0.72rem;
	font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* Fluxo do Medicamento — timeline conectada                                  */
/* -------------------------------------------------------------------------- */
.gm-flow-section {
	background:
		radial-gradient(circle at 10% 0%, rgba(14, 116, 144, 0.08), transparent 40%),
		radial-gradient(circle at 90% 100%, rgba(15, 118, 110, 0.08), transparent 42%),
		linear-gradient(180deg, #f0f9ff 0%, #ffffff 55%, #ecfeff 100%);
}

.gm-flow {
	--flow-line: #bae6fd;
	--flow-accent: #0284c7;
	--flow-accent-soft: #e0f2fe;
	--flow-alt: #0f766e;

	position: relative;
	display: grid;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.gm-flow__item {
	position: relative;
	display: grid;
	align-items: start;
}

.gm-flow__card {
	padding: 1.1rem 1.15rem;
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(14, 116, 144, 0.12);
	box-shadow: 0 10px 28px rgba(15, 47, 68, 0.06);
	transition: transform var(--gm-transition), box-shadow var(--gm-transition), border-color var(--gm-transition);
}

.gm-flow__card:hover {
	transform: translateY(-3px);
	border-color: rgba(2, 132, 199, 0.28);
	box-shadow: 0 16px 34px rgba(15, 47, 68, 0.1);
}

.gm-flow__item--alt .gm-flow__card:hover {
	border-color: rgba(15, 118, 110, 0.3);
}

.gm-flow__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 0.65rem;
	border-radius: 0.75rem;
	background: var(--flow-accent-soft);
	font-size: 1.15rem;
}

.gm-flow__item--alt .gm-flow__icon {
	background: #ccfbf1;
}

.gm-flow__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 800;
	color: #0f2f44;
	line-height: 1.25;
}

.gm-flow__text {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.5;
	color: #5b6b7c;
}

@media (min-width: 900px) {
	.gm-flow {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0.85rem;
		align-items: stretch;
	}

	.gm-flow__item {
		justify-items: center;
		text-align: center;
	}

	.gm-flow__card {
		width: 100%;
		height: 100%;
		padding: 1.2rem 0.95rem 1.25rem;
	}

	.gm-flow__icon {
		margin-left: auto;
		margin-right: auto;
	}
}

/* -------------------------------------------------------------------------- */
/* Recursos Técnicos                                                          */
/* -------------------------------------------------------------------------- */
.gm-recursos-section {
	background:
		radial-gradient(circle at 0% 0%, rgba(0, 74, 153, 0.07), transparent 42%),
		radial-gradient(circle at 100% 100%, rgba(14, 116, 144, 0.08), transparent 40%),
		#f8fafc;
}

.gm-recursos__intro {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.gm-recursos__intro .gm-title {
	margin-top: 0.35rem;
}

.gm-recursos__lead {
	margin: 0;
	max-width: 34rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	color: var(--gm-muted);
}

.gm-recursos {
	display: grid;
	gap: 1rem;
}

.gm-recursos__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
	padding: 1.35rem 1.25rem 1.4rem;
	border-radius: 1.25rem;
	background: var(--gm-white);
	border: 1px solid rgba(15, 47, 68, 0.08);
	box-shadow: 0 10px 28px rgba(15, 47, 68, 0.05);
	overflow: hidden;
	transition: transform var(--gm-transition), box-shadow var(--gm-transition), border-color var(--gm-transition);
}

.gm-recursos__card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--recurso-accent, #0284c7);
}

.gm-recursos__card--1 {
	--recurso-accent: #0284c7;
	--recurso-soft: #e0f2fe;
}

.gm-recursos__card--2 {
	--recurso-accent: #0f766e;
	--recurso-soft: #ccfbf1;
}

.gm-recursos__card--3 {
	--recurso-accent: #1d4ed8;
	--recurso-soft: #dbeafe;
}

.gm-recursos__card:hover {
	transform: translateY(-4px);
	border-color: rgba(2, 132, 199, 0.25);
	box-shadow: 0 18px 36px rgba(15, 47, 68, 0.1);
}

.gm-recursos__card--2:hover {
	border-color: rgba(15, 118, 110, 0.28);
}

.gm-recursos__card--3:hover {
	border-color: rgba(29, 78, 216, 0.28);
}

.gm-recursos__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.9rem;
	background: var(--recurso-soft, #e0f2fe);
	font-size: 1.35rem;
}

.gm-recursos__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
	color: #0f2f44;
}

.gm-recursos__text {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.55;
	color: #5b6b7c;
}

@media (min-width: 768px) {
	.gm-recursos__intro {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: end;
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.gm-recursos__lead {
		text-align: right;
	}

	.gm-recursos {
		grid-template-columns: 1fr 1fr;
		gap: 1.1rem;
	}
}

@media (min-width: 1024px) {
	.gm-recursos {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.2rem;
	}

	.gm-recursos__card {
		min-height: 100%;
		padding: 1.5rem 1.35rem 1.55rem;
	}

	.gm-recursos__icon {
		width: 3.35rem;
		height: 3.35rem;
		font-size: 1.45rem;
	}
}

/* -------------------------------------------------------------------------- */
/* Impacto — retorno social + diferenciais                                    */
/* -------------------------------------------------------------------------- */
.gm-impacto-section {
	position: relative;
	overflow: hidden;
	color: var(--gm-white);
	background:
		radial-gradient(circle at 12% 10%, rgba(14, 165, 233, 0.18), transparent 40%),
		radial-gradient(circle at 88% 90%, rgba(20, 184, 166, 0.16), transparent 42%),
		linear-gradient(160deg, #0b1f33 0%, #0c3b5e 48%, #0a4f4a 100%);
}

.gm-impacto-section .gm-title,
.gm-impacto-section h3 {
	color: var(--gm-white);
}

.gm-impacto__head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 1.75rem;
}

.gm-impacto__lead {
	margin: 0.85rem auto 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	color: rgba(224, 242, 254, 0.86);
}

.gm-impacto__metrics {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.gm-impacto__metric {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.65rem;
	padding: 1.4rem 1.2rem;
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	transition: transform var(--gm-transition), background var(--gm-transition), border-color var(--gm-transition);
}

.gm-impacto__metric:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(125, 211, 252, 0.35);
}

.gm-impacto__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.95);
	font-size: 1.55rem;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.gm-impacto__metric h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: #7dd3fc;
}

.gm-impacto__metric p {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.5;
	color: rgba(226, 232, 240, 0.88);
}

.gm-impacto__diff {
	padding: 1.35rem 1.15rem 1.4rem;
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.gm-impacto__diff-head {
	text-align: center;
	margin-bottom: 1.15rem;
}

.gm-impacto__diff-head h3 {
	margin: 0.45rem 0 0;
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gm-impacto__diff-grid {
	display: grid;
	gap: 0.85rem;
}

.gm-impacto__diff-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.45rem;
	padding: 1.1rem 0.95rem;
	border-radius: 1.1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform var(--gm-transition), background var(--gm-transition), border-color var(--gm-transition);
}

.gm-impacto__diff-card:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(45, 212, 191, 0.35);
}

.gm-impacto__diff-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.95);
	font-size: 1.2rem;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.gm-impacto__diff-card strong {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--gm-white);
	line-height: 1.25;
}

.gm-impacto__diff-card p {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.45;
	color: rgba(226, 232, 240, 0.84);
}

@media (min-width: 768px) {
	.gm-impacto__metrics {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.1rem;
	}

	.gm-impacto__diff {
		padding: 1.5rem;
	}

	.gm-impacto__diff-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.gm-impacto__diff-card {
		flex: 1 1 calc(50% - 0.5rem);
		max-width: 18rem;
	}
}

@media (min-width: 1024px) {
	.gm-impacto__head {
		margin-bottom: 2rem;
	}

	.gm-impacto__metrics {
		margin-bottom: 2rem;
	}

	.gm-impacto__diff-card {
		flex: 1 1 calc(33.333% - 0.7rem);
		max-width: 15.5rem;
	}
}

/* -------------------------------------------------------------------------- */
/* Equipe                                                                     */
/* -------------------------------------------------------------------------- */
.gm-team {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.gm-team {
		grid-template-columns: 1fr 1fr;
	}
}

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

.gm-member {
	text-align: center;
	padding: 1.75rem 1.25rem;
}

.gm-member__photo {
	width: 6rem;
	height: 6rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--gm-green);
	background: var(--gm-green-soft);
	padding: 3px;
}

.gm-member__photo--navy {
	border-color: var(--gm-navy);
}

.gm-member__photo--terra {
	border-color: var(--gm-terra);
}

.gm-member__photo img,
.gm-member__photo .gm-member__initial {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
}

.gm-member__initial {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gm-navy-soft);
	color: var(--gm-navy);
	font-size: 1.5rem;
	font-weight: 900;
}

.gm-member__name {
	font-size: 0.95rem;
	font-weight: 800;
}

.gm-member__role {
	margin-top: 0.25rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gm-green);
}

.gm-member__bio,
.gm-member__bio p {
	margin-top: 0.75rem;
	font-size: 0.8rem;
	color: var(--gm-muted);
	line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
/* Parceiros / instituições de apoio                                          */
/* -------------------------------------------------------------------------- */
.gm-parceiros-section {
	background: #ffffff;
	border-block: 1px solid rgba(15, 47, 68, 0.06);
}

.gm-parceiros__head {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 1.75rem;
}

.gm-parceiros__head .gm-title {
	margin-top: 0.4rem;
}

.gm-parceiros__text {
	margin: 0.9rem auto 0;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.7;
	color: var(--gm-muted);
}

.gm-parceiros__strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 1rem;
	border-radius: 1.4rem;
	background:
		radial-gradient(circle at 0% 0%, rgba(2, 132, 199, 0.08), transparent 45%),
		radial-gradient(circle at 100% 100%, rgba(15, 118, 110, 0.08), transparent 42%),
		#f8fafc;
	border: 1px solid rgba(15, 47, 68, 0.06);
}

.gm-parceiros__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	min-height: 5.5rem;
	padding: 1rem;
	border-radius: 1rem;
	background: var(--gm-white);
	border: 1px solid rgba(15, 47, 68, 0.06);
	box-shadow: 0 8px 18px rgba(15, 47, 68, 0.04);
	transition: transform var(--gm-transition), box-shadow var(--gm-transition);
}

.gm-parceiros__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(15, 47, 68, 0.09);
}

.gm-parceiros__item img {
	display: block;
	width: auto;
	height: 2.85rem;
	max-width: 100%;
	object-fit: contain;
	filter: grayscale(0.2);
	transition: filter var(--gm-transition), transform var(--gm-transition);
}

.gm-parceiros__item:hover img {
	filter: grayscale(0);
	transform: scale(1.05);
}

.gm-parceiros__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin: 1.15rem 0 0;
	padding: 0;
	list-style: none;
}

.gm-parceiros__legend li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: #5b6b7c;
}

.gm-parceiros__dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
}

.gm-parceiros__dot--fomento {
	background: #0284c7;
}

.gm-parceiros__dot--publico {
	background: #0f766e;
}

.gm-parceiros__dot--academico {
	background: #1d4ed8;
}

@media (min-width: 768px) {
	.gm-parceiros__strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.9rem;
		padding: 1.15rem;
	}

	.gm-parceiros__item {
		min-height: 6rem;
	}

	.gm-parceiros__item img {
		height: 3.15rem;
	}
}

/* -------------------------------------------------------------------------- */
/* Fale Conosco                                                               */
/* -------------------------------------------------------------------------- */
.gm-contact-section {
	background:
		radial-gradient(circle at 10% 0%, rgba(14, 165, 233, 0.16), transparent 40%),
		radial-gradient(circle at 90% 100%, rgba(20, 184, 166, 0.14), transparent 42%),
		linear-gradient(160deg, #0b1f33 0%, #0c3b5e 50%, #0a4f4a 100%);
}

.gm-contact-panel {
	display: grid;
	gap: 1.5rem;
	padding: 1.5rem 1.25rem;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
}

.gm-contact-panel__info .gm-title {
	color: var(--gm-white);
	margin-top: 0.4rem;
}

.gm-contact-panel__lead {
	margin: 0.85rem 0 1.25rem;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.65;
	color: rgba(224, 242, 254, 0.88);
}

.gm-contact-panel__channels {
	display: grid;
	gap: 0.75rem;
}

.gm-contact-panel__channel {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform var(--gm-transition), background var(--gm-transition), border-color var(--gm-transition);
}

.gm-contact-panel__channel:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(125, 211, 252, 0.35);
}

.gm-contact-panel__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.95);
	font-size: 1.15rem;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.gm-contact-panel__channel small {
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #7dd3fc;
	margin-bottom: 0.15rem;
}

.gm-contact-panel__channel strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--gm-white);
}

.gm-contact-form {
	padding: 1.4rem 1.2rem;
	border-radius: 1.25rem;
	background: var(--gm-white);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.gm-contact-form__head {
	margin-bottom: 1.1rem;
}

.gm-contact-form__badge {
	display: inline-flex;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: #ffedd5;
	color: #c2410c;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.65rem;
}

.gm-contact-form__head h3 {
	margin: 0;
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
	line-height: 1.3;
	color: #0f2f44;
}

.gm-contact-form__head p {
	margin: 0.4rem 0 0;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--gm-muted);
	line-height: 1.5;
}

@media (min-width: 1024px) {
	.gm-contact-panel {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		padding: 1.75rem;
		align-items: stretch;
	}

	.gm-contact-panel__info {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.gm-contact-form {
		height: 100%;
		padding: 1.6rem 1.45rem;
	}
}

.gm-form {
	display: grid;
	gap: 0.9rem;
}

.gm-form__row {
	display: grid;
	gap: 0.9rem;
}

@media (min-width: 640px) {
	.gm-form__row {
		grid-template-columns: 1fr 1fr;
	}
}

.gm-form__field {
	display: grid;
	gap: 0.35rem;
}

.gm-form__field span {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--gm-navy);
}

.gm-form input {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--gm-border);
	border-radius: 0.85rem;
	background: var(--gm-bg);
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gm-text);
	transition: border-color var(--gm-transition), box-shadow var(--gm-transition), background var(--gm-transition);
}

.gm-form input:focus {
	outline: none;
	background: var(--gm-white);
	border-color: var(--gm-green);
	box-shadow: 0 0 0 3px rgba(30, 132, 73, 0.15);
}

.gm-alert {
	padding: 0.85rem 1rem;
	border-radius: var(--gm-radius);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.gm-alert--ok {
	background: var(--gm-green-soft);
	color: var(--gm-green-dark);
	border: 1px solid rgba(30, 132, 73, 0.2);
}

.gm-alert--err {
	background: var(--gm-terra-soft);
	color: #8a4a28;
	border: 1px solid rgba(196, 120, 74, 0.25);
}

.gm-footer {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, #002447 0%, #001528 55%, #00101f 100%);
	color: rgba(255, 255, 255, 0.62);
	padding: 0 0 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gm-footer::before {
	content: "";
	display: block;
	height: 0.3rem;
	background: var(--gm-gradient);
}

.gm-footer__glow {
	position: absolute;
	inset: auto -10% -30% auto;
	width: 22rem;
	height: 22rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(30, 132, 73, 0.22), transparent 68%);
	pointer-events: none;
}

.gm-footer__cta {
	position: relative;
	display: grid;
	gap: 1.25rem;
	margin: 2rem 0 1.75rem;
	padding: 1.35rem 1.25rem;
	border-radius: calc(var(--gm-radius-lg) + 0.15rem);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
}

@media (min-width: 900px) {
	.gm-footer__cta {
		grid-template-columns: 0.9fr 1.1fr;
		align-items: center;
		gap: 1.5rem;
		padding: 1.4rem 1.5rem;
	}
}

.gm-footer__cta-label {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9fd4b3;
}

.gm-footer__cta p {
	margin: 0;
	max-width: 28rem;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

.gm-footer__socials {
	display: grid;
	gap: 0.7rem;
}

@media (min-width: 640px) {
	.gm-footer__socials {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.gm-footer__social {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.7rem 0.8rem;
	border-radius: 0.95rem;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.92);
	transition: transform var(--gm-transition), border-color var(--gm-transition), background var(--gm-transition), box-shadow var(--gm-transition);
}

.gm-footer__social:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.gm-footer__social-icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.7rem;
	background: rgba(255, 255, 255, 0.12);
}

.gm-footer__social-icon svg {
	width: 1.15rem;
	height: 1.15rem;
}

.gm-footer__social--instagram:hover .gm-footer__social-icon {
	background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
	color: #fff;
}

.gm-footer__social--youtube:hover .gm-footer__social-icon {
	background: #ff0000;
	color: #fff;
}

.gm-footer__social--tiktok:hover .gm-footer__social-icon {
	background: #010101;
	color: #25f4ee;
	box-shadow: 2px 2px 0 #fe2c55;
}

.gm-footer__social-meta {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.gm-footer__social-meta small {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.gm-footer__social-meta strong {
	font-size: 0.88rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.95);
}

.gm-footer__top {
	position: relative;
	display: grid;
	gap: 2rem;
	padding-top: 0.5rem;
}

@media (min-width: 768px) {
	.gm-footer__top {
		grid-template-columns: 1.35fr 1fr 1fr;
		gap: 2.5rem;
		align-items: start;
	}
}

.gm-footer__brand {
	display: grid;
	gap: 0.9rem;
	justify-items: start;
}

.gm-footer__logo {
	display: inline-flex;
	padding: 0.45rem;
	border-radius: 0.9rem;
	background: var(--gm-white);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	transition: transform var(--gm-transition);
}

.gm-footer__logo:hover {
	transform: translateY(-2px);
}

.gm-footer__logo img {
	width: 3.5rem;
	height: auto;
}

.gm-footer__tagline {
	margin: 0;
	max-width: 22rem;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.gm-footer__demo {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: var(--gm-gradient);
	color: var(--gm-white);
	font-size: 0.82rem;
	font-weight: 800;
	box-shadow: 0 10px 22px rgba(0, 74, 153, 0.28);
	transition: transform var(--gm-transition), box-shadow var(--gm-transition);
}

.gm-footer__demo:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 74, 153, 0.34);
}

.gm-footer__col > strong {
	display: block;
	margin-bottom: 0.85rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.gm-footer__col ul {
	display: grid;
	gap: 0.55rem;
}

.gm-footer__col a {
	display: grid;
	gap: 0.1rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.68);
	transition: color var(--gm-transition);
}

.gm-footer__col a span {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

.gm-footer__col a strong {
	font-size: 0.88rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.86);
}

.gm-footer__col a:hover,
.gm-footer__col a:hover strong {
	color: #9fd4b3;
}

.gm-footer__bottom {
	position: relative;
	display: grid;
	gap: 0.55rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
	.gm-footer__bottom {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}

	.gm-footer__slogan {
		justify-self: end;
		text-align: right;
	}
}

.gm-footer__copy,
.gm-footer__slogan {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.45;
}

.gm-footer__slogan {
	color: rgba(159, 212, 179, 0.95);
	font-weight: 700;
	font-style: italic;
}

/* -------------------------------------------------------------------------- */
/* Scroll animations (Intersection Observer)                                  */
/* -------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* -------------------------------------------------------------------------- */
/* Arquivo de notícias                                                        */
/* -------------------------------------------------------------------------- */
.gm-archive-section {
	background: var(--gm-bg);
}

.gm-archive-section--noticias {
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}

.gm-archive__head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2.25rem;
}

.gm-archive__desc {
	margin-top: 0.85rem;
	color: var(--gm-muted);
	font-weight: 500;
	line-height: 1.6;
}

.gm-archive__grid {
	display: grid;
	gap: 1.25rem;
	max-width: 48rem;
	margin: 0 auto;
}

.gm-archive__grid--noticias {
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: var(--gm-container);
}

.gm-archive__item {
	display: flex;
	min-width: 0;
}

.gm-archive__item .gm-news-item {
	width: 100%;
	height: 100%;
}

.gm-news-item--archive {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0.85rem;
	background: var(--gm-white);
	border: 1px solid rgba(14, 116, 144, 0.1);
	border-radius: var(--gm-radius-lg);
	box-shadow: 0 10px 28px rgba(15, 47, 68, 0.06);
	transition: transform var(--gm-transition), border-color var(--gm-transition), box-shadow var(--gm-transition);
}

.gm-news-item--archive:hover {
	transform: translateY(-4px);
	border-color: rgba(15, 118, 110, 0.2);
	box-shadow: 0 16px 36px rgba(15, 47, 68, 0.1);
}

.gm-news-item--archive .gm-news-item__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 0.85rem;
	overflow: hidden;
	background: var(--hero-sky);
	flex-shrink: 0;
}

.gm-news-item--archive .gm-news-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.gm-news-item--archive:hover .gm-news-item__media img {
	transform: scale(1.04);
}

.gm-news-item--archive .gm-news-item__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 0.75rem 0.15rem 0.15rem;
}

.gm-news-item--archive .gm-news-item__title {
	margin-top: 0.35rem;
	font-size: clamp(0.95rem, 1.4vw, 1.08rem);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gm-news-item--archive .gm-news-item__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
	margin-top: 0.45rem;
	font-size: 0.84rem;
	line-height: 1.55;
}

.gm-news-item--archive .gm-news-item__link {
	margin-top: auto;
	padding-top: 0.65rem;
}

.gm-archive__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	max-width: var(--gm-container);
	margin: 2rem auto 0;
	padding-top: 0.5rem;
	font-weight: 800;
	color: var(--gm-navy);
}

@media (min-width: 640px) {
	.gm-archive__grid--noticias {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.35rem;
	}
}

@media (min-width: 1024px) {
	.gm-archive__grid--noticias {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

.gm-archive__nav a {
	transition: color var(--gm-transition);
}

.gm-archive__nav a:hover {
	color: var(--gm-green);
}

.gm-archive__empty {
	text-align: center;
	color: var(--gm-muted);
	font-weight: 500;
}

.gm-archive__back {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

/* -------------------------------------------------------------------------- */
/* Post individual                                                            */
/* -------------------------------------------------------------------------- */
.gm-news-category--light {
	background: var(--gm-green-soft);
	color: var(--gm-green);
	border-color: rgba(30, 132, 73, 0.15);
}

.gm-single-section {
	padding-top: 2rem;
	padding-bottom: 3.5rem;
	background:
		radial-gradient(circle at 12% 0%, rgba(14, 116, 144, 0.07), transparent 38%),
		radial-gradient(circle at 88% 8%, rgba(30, 132, 73, 0.06), transparent 34%),
		var(--gm-bg);
}

.gm-single__nav {
	margin: 0 0 1.25rem;
}

.gm-single__back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gm-navy);
	transition: color var(--gm-transition), gap var(--gm-transition);
}

.gm-single__back:hover {
	color: var(--gm-green);
	gap: 0.55rem;
}

.gm-single__article {
	width: 100%;
	margin: 0;
	padding: clamp(1.35rem, 3vw, 2.25rem);
	background: var(--gm-white);
	border: 1px solid rgba(14, 116, 144, 0.1);
	border-radius: calc(var(--gm-radius-lg) + 0.15rem);
	box-shadow:
		0 18px 44px rgba(15, 47, 68, 0.08),
		0 2px 0 rgba(255, 255, 255, 0.85) inset;
	overflow: hidden;
}

.gm-single__hero {
	padding-bottom: 1.35rem;
	border-bottom: 1px solid rgba(14, 116, 144, 0.08);
}

.gm-single__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.75rem;
	margin-top: 0.85rem;
}

.gm-single__date {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gm-muted);
}

.gm-single__title {
	margin: 1rem 0 0;
	font-size: clamp(1.75rem, 4.2vw, 2.55rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.12;
	color: var(--gm-navy);
}

.gm-single__lead {
	margin: 1rem 0 0;
	font-size: clamp(1rem, 1.8vw, 1.12rem);
	font-weight: 500;
	line-height: 1.65;
	color: var(--gm-muted);
}

.gm-single__media {
	margin: 1.5rem 0 0;
	border-radius: calc(var(--gm-radius) + 0.15rem);
	overflow: hidden;
	background: linear-gradient(135deg, var(--gm-navy-soft) 0%, #f0fdfa 100%);
	box-shadow: 0 12px 28px rgba(15, 47, 68, 0.08);
}

.gm-single__media-img,
.gm-single__media img {
	width: 100%;
	height: auto;
	max-height: 26rem;
	display: block;
	object-fit: cover;
	object-position: center;
}

.gm-single__content {
	margin-top: 1.75rem;
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--gm-text);
}

.gm-single__content > :first-child {
	margin-top: 0;
}

.gm-single__content p {
	margin: 0 0 1.15rem;
}

.gm-single__content h2,
.gm-single__content h3,
.gm-single__content h4 {
	margin: 1.75rem 0 0.75rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--gm-navy);
	letter-spacing: -0.02em;
}

.gm-single__content h2 {
	font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.gm-single__content h3 {
	font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.gm-single__content ul,
.gm-single__content ol {
	margin: 0 0 1.15rem;
	padding-left: 1.35rem;
}

.gm-single__content li {
	margin-bottom: 0.35rem;
}

.gm-single__content li::marker {
	color: var(--gm-green);
}

.gm-single__content a {
	color: var(--gm-navy);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(0, 74, 153, 0.25);
	text-underline-offset: 0.15em;
	transition: color var(--gm-transition), text-decoration-color var(--gm-transition);
}

.gm-single__content a:hover {
	color: var(--gm-green);
	text-decoration-color: rgba(30, 132, 73, 0.45);
}

.gm-single__content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.15rem;
	border-left: 4px solid var(--gm-green);
	border-radius: 0 0.75rem 0.75rem 0;
	background: var(--gm-green-soft);
	color: var(--gm-navy);
	font-weight: 500;
}

.gm-single__content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--gm-radius);
}

.gm-single__footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(14, 116, 144, 0.1);
}

.gm-single__footer-bar {
	margin-bottom: 1.15rem;
}

.gm-single__footer-label {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--gm-muted);
}

.gm-single__footer-label time {
	font-weight: 800;
	color: var(--gm-navy);
}

.gm-single__footer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.gm-single-section {
		padding-top: 2.5rem;
	}

	.gm-single__footer-actions {
		justify-content: space-between;
	}

	.gm-single__footer-actions .gm-btn--primary {
		margin-left: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal,
	.gm-btn,
	.gm-card,
	.gm-flow__card,
	.gm-hero__bullet,
	.gm-news-item,
	.gm-topic-card,
	.gm-dim-card,
	.gm-nav a::after {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}
