:root {
	--srv-blue-950: #020B1F;
	--srv-blue-900: #061A3A;
	--srv-blue-500: #005BFF;
	--srv-red: #E30613;
	--srv-red-neon: #FF2438;
	--srv-white: #FFFFFF;
	--srv-off: #F4F6FA;
	--srv-gray: #AAB3C5;
	--srv-glass: rgba(255, 255, 255, 0.08);
	--srv-line: rgba(255, 255, 255, 0.16);
	--srv-radius: 14px;
	--srv-title: "Montserrat", "Inter", sans-serif;
	--srv-body: "Inter", "Poppins", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.srv-theme {
	margin: 0;
	background: var(--srv-blue-950);
	color: var(--srv-white);
	font-family: var(--srv-body);
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}

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

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

.srv-wide {
	width: min(1920px, calc(100% - 52px));
	margin-inline: auto;
}

.srv-anchor {
	position: relative;
	top: -110px;
	display: block;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.srv-skip-link {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 10000;
	transform: translateY(-140%);
	background: var(--srv-white);
	color: var(--srv-blue-950);
	padding: 10px 14px;
	border-radius: 8px;
}

.srv-skip-link:focus {
	transform: translateY(0);
}

.srv-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	padding: 18px 0;
	transition: background 200ms ease, backdrop-filter 200ms ease, border-color 200ms ease;
}

.srv-header.is-scrolled,
.srv-header.is-open,
.srv-header.is-search-open {
	background: rgba(2, 11, 31, 0.82);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
}

.srv-header-inner {
	width: min(1920px, calc(100% - 72px));
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
}

.srv-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 210px;
}

.srv-brand-mark {
	width: 54px;
	height: 44px;
	display: inline-block;
	border-radius: 7px;
	background:
		linear-gradient(135deg, transparent 48%, var(--srv-red) 49% 100%),
		linear-gradient(135deg, var(--srv-white) 0 48%, transparent 49%),
		linear-gradient(180deg, #135cff, #08296b);
	box-shadow: 0 12px 32px rgba(0, 91, 255, 0.32);
}

.srv-brand strong {
	display: block;
	font-family: var(--srv-title);
	font-size: 1.34rem;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0;
}

.srv-brand small {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.srv-primary-nav {
	justify-self: center;
}

.srv-menu,
.srv-footer-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 38px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.srv-menu a {
	position: relative;
	font-size: 0.9rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
}

.srv-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background: var(--srv-red-neon);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.srv-menu a:hover::after,
.srv-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.srv-header-actions {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.srv-icon-button {
	width: 42px;
	height: 42px;
	display: inline-grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--srv-white);
	cursor: pointer;
}

.srv-icon {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
}

.srv-icon-search::before {
	content: "";
	position: absolute;
	inset: 2px 6px 6px 2px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.srv-icon-search::after {
	content: "";
	position: absolute;
	right: 2px;
	bottom: 2px;
	width: 9px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
}

.srv-icon-globe {
	border: 2px solid currentColor;
	border-radius: 50%;
}

.srv-icon-globe::before,
.srv-icon-globe::after {
	content: "";
	position: absolute;
	inset: 4px 9px;
	border-left: 2px solid currentColor;
	border-right: 2px solid currentColor;
	border-radius: 50%;
}

.srv-icon-globe::after {
	inset: 10px 2px;
	border: 0;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	border-radius: 0;
}

.srv-header-cta,
.srv-button,
.srv-newsletter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
}

.srv-header-cta {
	min-height: 44px;
	padding: 0 24px;
	background: var(--srv-red);
	box-shadow: 0 14px 40px rgba(227, 6, 19, 0.35);
}

.srv-header-cta span,
.srv-button span,
.srv-newsletter button span {
	width: 18px;
	height: 18px;
	background: currentColor;
	clip-path: polygon(30% 20%, 38% 12%, 74% 48%, 38% 84%, 30% 76%, 58% 48%);
}

.srv-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--srv-line);
	border-radius: 10px;
	background: var(--srv-glass);
	color: var(--srv-white);
	padding: 10px;
}

.srv-menu-toggle span {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	border-radius: 999px;
}

.srv-search-panel {
	display: none;
	width: min(680px, calc(100% - 48px));
	margin: 14px auto 0;
}

.srv-header.is-search-open .srv-search-panel {
	display: block;
}

.srv-search-form {
	display: flex;
	gap: 10px;
	padding: 10px;
	border: 1px solid var(--srv-line);
	border-radius: 999px;
	background: rgba(2, 11, 31, 0.82);
	backdrop-filter: blur(18px);
}

.srv-search-form label {
	flex: 1;
}

.srv-search-form input {
	width: 100%;
	min-height: 42px;
	border: 0;
	background: transparent;
	color: var(--srv-white);
	padding: 0 14px;
	outline: 0;
}

.srv-search-form button {
	border: 0;
	border-radius: 999px;
	background: var(--srv-red);
	color: var(--srv-white);
	padding: 0 18px;
	font-weight: 800;
}

.srv-hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(2, 11, 31, 0.96), rgba(2, 11, 31, 0.56) 48%, rgba(2, 11, 31, 0.80)),
		var(--srv-hero-image),
		linear-gradient(135deg, #020B1F, #061A3A);
	background-size: cover;
	background-position: center top;
}

.srv-hero-video,
.srv-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.srv-hero-overlay {
	z-index: -1;
	background:
		radial-gradient(circle at 58% 44%, rgba(255, 36, 56, 0.20), transparent 20%),
		radial-gradient(circle at 72% 58%, rgba(0, 91, 255, 0.30), transparent 24%),
		linear-gradient(180deg, rgba(2, 11, 31, 0.08), rgba(2, 11, 31, 0.82));
}

.srv-hero-grid {
	width: min(1920px, calc(100% - 72px));
	margin-inline: auto;
	padding-top: 80px;
	display: grid;
	grid-template-columns: 35% 35% 30%;
	gap: 24px;
	align-items: center;
}

.srv-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	color: var(--srv-red-neon);
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.srv-eyebrow span {
	width: 34px;
	height: 3px;
	background: var(--srv-red-neon);
	box-shadow: 0 0 16px rgba(255, 36, 56, 0.9);
}

.srv-hero-copy h1 {
	margin: 0;
	font-family: var(--srv-title);
	font-size: clamp(4.2rem, 6.1vw, 8.4rem);
	line-height: 0.88;
	letter-spacing: 0;
}

.srv-hero-copy h1 span {
	display: block;
	color: var(--srv-white);
}

.srv-hero-copy h1 strong {
	display: block;
	color: var(--srv-red-neon);
	font-weight: 900;
}

.srv-hero-copy p {
	max-width: 560px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 1.22vw, 1.45rem);
	line-height: 1.42;
}

.srv-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

.srv-button {
	min-height: 52px;
	padding: 0 24px;
	color: var(--srv-white);
}

.srv-button-red {
	background: var(--srv-red);
	box-shadow: 0 16px 44px rgba(227, 6, 19, 0.36);
}

.srv-button-red:hover,
.srv-header-cta:hover,
.srv-newsletter button:hover {
	filter: brightness(1.12);
	box-shadow: 0 0 34px rgba(255, 36, 56, 0.42);
}

.srv-button-ghost {
	border: 1px solid rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
}

.srv-button-ghost i {
	width: 26px;
	height: 26px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.srv-button-ghost i::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 6px;
	border-left: 8px solid currentColor;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

.srv-commemorative-panels {
	display: grid;
	gap: 14px;
	text-align: center;
}

.srv-commemorative-panels article,
.srv-weather-card,
.srv-main-card,
.srv-logo-strip,
.srv-lead-news,
.srv-premium-ad,
.srv-territorios,
.srv-indicadores,
.srv-four-blocks article,
.srv-culture-carousel article,
.srv-news-grid article {
	border: 1px solid var(--srv-line);
	border-radius: var(--srv-radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
	box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(18px);
}

.srv-commemorative-panels article {
	padding: clamp(18px, 2vw, 30px);
	background: linear-gradient(180deg, rgba(2, 11, 31, 0.34), rgba(2, 11, 31, 0.72));
}

.srv-commemorative-panels span {
	color: var(--srv-white);
	font-size: 0.9rem;
	font-weight: 900;
	text-transform: uppercase;
}

.srv-commemorative-panels strong {
	display: block;
	color: var(--srv-white);
	font-family: var(--srv-title);
	font-size: clamp(4.4rem, 6vw, 8rem);
	line-height: 0.8;
	text-shadow: 0 0 34px rgba(0, 91, 255, 0.42);
}

.srv-commemorative-panels h2 {
	max-width: 330px;
	margin: 8px auto 4px;
	color: #FFD65A;
	font-family: var(--srv-title);
	font-size: clamp(1.6rem, 2.3vw, 3rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.srv-commemorative-panels p {
	margin: 0;
	color: var(--srv-white);
	font-weight: 900;
	text-transform: uppercase;
}

.srv-weather-card {
	justify-self: end;
	width: min(100%, 365px);
	padding: 28px;
	background: rgba(2, 11, 31, 0.50);
}

.srv-weather-location {
	color: var(--srv-white);
	font-weight: 900;
	text-transform: uppercase;
}

.srv-weather-main {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 22px 0 6px;
}

.srv-weather-main strong {
	font-family: var(--srv-title);
	font-size: 3.3rem;
	line-height: 1;
}

.srv-weather-icon {
	width: 54px;
	height: 38px;
	border: 3px solid #FFD65A;
	border-radius: 24px;
	position: relative;
}

.srv-weather-icon::before {
	content: "";
	position: absolute;
	left: -14px;
	top: -12px;
	width: 26px;
	height: 26px;
	border: 3px solid #FFD65A;
	border-radius: 50%;
}

.srv-weather-card p,
.srv-weather-card small,
.srv-weather-card span {
	color: rgba(255, 255, 255, 0.74);
	margin: 0;
}

.srv-weather-card hr {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	margin: 20px 0;
}

.srv-weather-time {
	display: block;
	font-family: var(--srv-title);
	font-size: 1.8rem;
}

.srv-tide b {
	display: block;
	text-transform: uppercase;
}

.srv-tide span {
	display: block;
	color: var(--srv-white);
	font-size: 1.2rem;
	font-weight: 900;
}

.srv-main-cards {
	margin-top: -96px;
	position: relative;
	z-index: 5;
	padding-bottom: 18px;
}

.srv-main-cards .srv-wide {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.srv-main-card {
	min-height: 160px;
	padding: 24px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.25), rgba(2, 11, 31, 0.82)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.srv-main-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 36, 56, 0.66);
	box-shadow: 0 0 44px rgba(0, 91, 255, 0.24);
}

.srv-card-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--srv-blue-500), #0036a3);
}

.srv-card-icon::before {
	content: "";
	width: 22px;
	height: 22px;
	border: 2px solid var(--srv-white);
	border-radius: 6px;
}

.srv-main-card h3 {
	margin: 18px 0 4px;
	font-family: var(--srv-title);
	font-size: 1.45rem;
}

.srv-main-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.srv-main-card i {
	float: right;
	width: 30px;
	height: 30px;
	background: var(--srv-white);
	clip-path: polygon(30% 20%, 38% 12%, 74% 48%, 38% 84%, 30% 76%, 58% 48%);
}

.srv-logo-strip {
	width: min(1920px, calc(100% - 52px));
	margin: 16px auto;
	min-height: 100px;
	display: grid;
	grid-template-columns: minmax(190px, 240px) 1fr;
	align-items: center;
	gap: 20px;
	padding: 18px 28px;
	background: rgba(2, 11, 31, 0.72);
}

.srv-logo-strip-title {
	color: var(--srv-white);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

.srv-logo-strip-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	overflow-x: auto;
}

.srv-logo-pill {
	min-width: 120px;
	min-height: 54px;
	display: grid;
	place-items: center;
	color: var(--srv-white);
	font-family: var(--srv-title);
	font-weight: 900;
	opacity: 0.94;
	transition: opacity 160ms ease, filter 160ms ease;
}

.srv-logo-pill:hover {
	opacity: 1;
	filter: drop-shadow(0 0 14px rgba(0, 91, 255, 0.55));
}

.srv-section {
	padding: 28px 0;
}

.srv-section-title {
	margin: 0 0 14px;
	font-family: var(--srv-title);
	font-size: 1.2rem;
	text-transform: uppercase;
}

.srv-section-title span {
	color: var(--srv-red-neon);
	margin-right: 8px;
}

.srv-destaque-grid {
	display: grid;
	grid-template-columns: 60% 20% 20%;
	gap: 18px;
}

.srv-lead-news {
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.10), rgba(2, 11, 31, 0.86)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
}

.srv-tag,
.srv-news-grid article span {
	align-self: flex-start;
	display: inline-flex;
	margin-bottom: 12px;
	padding: 6px 10px;
	border-radius: 8px;
	background: var(--srv-blue-500);
	color: var(--srv-white);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.srv-lead-news h3 {
	max-width: 720px;
	margin: 0 0 12px;
	font-family: var(--srv-title);
	font-size: clamp(2rem, 3vw, 3.5rem);
	line-height: 1;
}

.srv-lead-news p {
	max-width: 560px;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.82);
}

.srv-news-stack {
	display: grid;
	gap: 12px;
}

.srv-news-mini {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 12px;
	align-items: center;
}

.srv-news-mini > span {
	width: 92px;
	height: 72px;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.10), rgba(2, 11, 31, 0.62)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
}

.srv-news-mini b {
	color: var(--srv-red-neon);
	font-size: 0.7rem;
	text-transform: uppercase;
}

.srv-news-mini strong {
	display: block;
	font-size: 0.9rem;
	line-height: 1.15;
}

.srv-news-mini small {
	color: var(--srv-gray);
	font-size: 0.72rem;
}

.srv-premium-ad {
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 26px;
	background:
		linear-gradient(180deg, rgba(0, 91, 255, 0.28), rgba(2, 11, 31, 0.86)),
		url("../images/hero-salvador-reference.png");
	background-size: cover;
	background-position: center;
}

.srv-premium-ad span {
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
}

.srv-premium-ad h3 {
	margin: 12px 0 20px;
	font-family: var(--srv-title);
	font-size: clamp(1.7rem, 2.4vw, 3rem);
	line-height: 1;
	text-transform: uppercase;
}

.srv-premium-ad strong {
	font-family: var(--srv-title);
	font-size: 1.7rem;
}

.srv-ti-grid {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 18px;
	align-items: stretch;
}

.srv-territorios,
.srv-indicadores,
.srv-four-blocks article {
	padding: 22px;
	background: rgba(2, 11, 31, 0.54);
}

.srv-territorios header h2,
.srv-indicadores h2,
.srv-four-blocks h3 {
	margin: 0 0 8px;
	font-family: var(--srv-title);
	text-transform: uppercase;
}

.srv-territorios header p {
	max-width: 540px;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.72);
}

.srv-territory-layout {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 18px;
}

.srv-tech-map {
	position: relative;
	min-height: 290px;
	border-radius: var(--srv-radius);
	border: 1px solid rgba(0, 91, 255, 0.28);
	background:
		radial-gradient(circle at 50% 50%, rgba(0, 91, 255, 0.36), transparent 6%),
		linear-gradient(135deg, rgba(0, 91, 255, 0.12), rgba(2, 11, 31, 0.28));
	overflow: hidden;
}

.srv-tech-map::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(0, 91, 255, 0.22);
	clip-path: polygon(12% 10%, 70% 2%, 92% 24%, 86% 62%, 62% 96%, 20% 78%, 4% 42%);
}

.srv-tech-map button {
	position: relative;
	z-index: 1;
	margin: 9px;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(0, 91, 255, 0.18);
	color: var(--srv-white);
	font-weight: 800;
	cursor: pointer;
}

.srv-tech-map button.is-active {
	background: var(--srv-red);
	border-color: var(--srv-red);
	box-shadow: 0 0 24px rgba(255, 36, 56, 0.42);
}

.srv-territory-card article {
	display: none;
	min-height: 290px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--srv-radius);
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.10), rgba(2, 11, 31, 0.88)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
}

.srv-territory-card article.is-active {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.srv-territory-card h3 {
	margin: 0 0 8px;
	font-family: var(--srv-title);
	font-size: 2rem;
}

.srv-territory-card p {
	margin: 0 0 10px;
	font-weight: 800;
}

.srv-territory-card div {
	color: rgba(255, 255, 255, 0.74);
}

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

.srv-indicator-grid article {
	min-height: 132px;
	padding: 16px;
	border: 1px solid rgba(0, 91, 255, 0.42);
	border-radius: var(--srv-radius);
	background: rgba(2, 11, 31, 0.66);
}

.srv-indicator-grid i {
	width: 28px;
	height: 28px;
	display: block;
	margin-bottom: 8px;
	border: 2px solid var(--srv-blue-500);
	border-radius: 8px;
}

.srv-indicator-grid strong,
.srv-indicator-grid em {
	color: var(--srv-red-neon);
	font-family: var(--srv-title);
	font-size: 1.82rem;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
}

.srv-indicator-grid h3 {
	margin: 6px 0 2px;
	font-size: 1rem;
}

.srv-indicator-grid p {
	margin: 0;
	color: var(--srv-gray);
	font-size: 0.78rem;
}

.srv-four-blocks .srv-wide {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.srv-four-blocks article {
	min-height: 260px;
}

.srv-four-blocks p {
	color: rgba(255, 255, 255, 0.80);
}

.srv-event-line {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 10px;
	margin: 12px 0;
}

.srv-event-line span {
	grid-row: span 2;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 10px;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
}

.srv-event-line small {
	color: var(--srv-gray);
}

.srv-mini-map,
.srv-insta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 14px 0;
}

.srv-mini-map span,
.srv-insta-grid span {
	min-height: 54px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(0, 91, 255, 0.18);
	font-size: 0.78rem;
	font-weight: 800;
}

.srv-social-icons {
	display: flex;
	gap: 10px;
}

.srv-social-icons a,
.srv-socials a {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: var(--srv-red);
	font-size: 0.78rem;
	font-weight: 900;
}

.srv-culture-carousel,
.srv-news-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(230px, 1fr);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}

.srv-culture-carousel article {
	min-height: 190px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.10), rgba(2, 11, 31, 0.82)),
		url("../images/hero-salvador-reference.png");
	background-size: cover;
	background-position: center;
}

.srv-culture-carousel button {
	width: 48px;
	height: 48px;
	margin-bottom: 48px;
	border: 2px solid var(--srv-white);
	border-radius: 50%;
	background: rgba(2, 11, 31, 0.24);
}

.srv-culture-carousel h3 {
	margin: 0;
	font-family: var(--srv-title);
	font-size: 1rem;
}

.srv-filter-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.srv-filter-head h2 {
	margin: 0;
	font-family: var(--srv-title);
	font-size: 1.35rem;
	text-transform: uppercase;
}

.srv-news-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.srv-news-filters button {
	min-height: 32px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--srv-white);
	cursor: pointer;
}

.srv-news-filters button.is-active {
	background: var(--srv-blue-500);
}

.srv-news-grid {
	grid-auto-columns: minmax(250px, 1fr);
}

.srv-news-grid article {
	scroll-snap-align: start;
	min-height: 340px;
	padding: 14px;
	background: rgba(2, 11, 31, 0.52);
}

.srv-news-grid article > div {
	height: 130px;
	margin-bottom: 12px;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.05), rgba(2, 11, 31, 0.42)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
}

.srv-news-grid h3 {
	margin: 0 0 8px;
	font-family: var(--srv-title);
	font-size: 1.02rem;
	line-height: 1.15;
}

.srv-news-grid small,
.srv-news-grid p {
	color: var(--srv-gray);
}

.srv-news-grid p {
	font-size: 0.86rem;
}

.srv-news-grid a {
	color: var(--srv-red-neon);
	font-weight: 800;
}

.srv-sponsored-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: linear-gradient(135deg, #082b66, #020B1F) !important;
}

.srv-sponsored-card h3 {
	font-size: 2.2rem;
}

.srv-newsletter {
	width: min(1920px, calc(100% - 52px));
	margin: 26px auto;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--srv-radius);
	background:
		linear-gradient(90deg, rgba(2, 11, 31, 0.82), rgba(2, 11, 31, 0.36)),
		var(--srv-newsletter-image),
		#061A3A;
	background-size: cover;
	background-position: center;
}

.srv-newsletter .srv-wide {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr minmax(340px, 560px);
	gap: 24px;
	align-items: center;
	padding: 24px;
}

.srv-newsletter span {
	color: var(--srv-red-neon);
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.srv-newsletter h2 {
	max-width: 720px;
	margin: 4px 0 0;
	font-family: var(--srv-title);
	font-size: clamp(1.4rem, 2vw, 2.4rem);
	line-height: 1.08;
}

.srv-newsletter form {
	display: flex;
	padding: 8px;
	border-radius: 999px;
	background: var(--srv-white);
}

.srv-newsletter input {
	flex: 1;
	min-height: 48px;
	border: 0;
	padding: 0 18px;
	outline: 0;
}

.srv-newsletter button {
	min-height: 48px;
	padding: 0 28px;
	background: var(--srv-red);
	color: var(--srv-white);
}

.srv-footer {
	background: #010715;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.srv-footer-inner {
	width: min(1920px, calc(100% - 72px));
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1fr 1.2fr;
	gap: 32px;
	padding: 54px 0 40px;
}

.srv-footer h3 {
	margin: 0 0 16px;
	font-family: var(--srv-title);
	font-size: 0.96rem;
	text-transform: uppercase;
}

.srv-footer p,
.srv-footer li,
.srv-footer small,
.srv-footer-bottom {
	color: rgba(255, 255, 255, 0.64);
}

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

.srv-footer li {
	margin: 7px 0;
}

.srv-footer-brand .srv-brand {
	margin-bottom: 18px;
}

.srv-socials {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.srv-bahia-map {
	position: relative;
	width: 170px;
	height: 190px;
	margin-bottom: 16px;
	border: 1px solid rgba(0, 91, 255, 0.35);
	clip-path: polygon(40% 0, 72% 16%, 90% 44%, 72% 78%, 42% 100%, 12% 72%, 0 34%);
	background: rgba(0, 91, 255, 0.09);
}

.srv-bahia-map span {
	position: absolute;
	left: 48%;
	top: 54%;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--srv-red);
	box-shadow: 0 0 18px var(--srv-red-neon);
}

.srv-footer-map strong,
.srv-footer-map small {
	display: block;
}

.srv-footer-bottom {
	width: min(1920px, calc(100% - 72px));
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.84rem;
}

.srv-footer-bottom nav {
	display: flex;
	gap: 28px;
}

.srv-back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 10px;
	background: var(--srv-red);
	color: var(--srv-white);
	font-weight: 900;
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.srv-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.srv-entry {
	width: min(1120px, calc(100% - 48px));
	margin-inline: auto;
	padding: 150px 0 80px;
}

.srv-entry-hero {
	min-height: 56vh;
	display: grid;
	align-items: end;
	padding: 140px 0 60px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.18), rgba(2, 11, 31, 0.90)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
}

.srv-entry-hero > div {
	width: min(1120px, calc(100% - 48px));
	margin-inline: auto;
}

.srv-entry-title,
.srv-entry-hero h1 {
	margin: 0;
	font-family: var(--srv-title);
	font-size: clamp(2.8rem, 6vw, 6rem);
	line-height: 0.95;
}

.srv-entry-content {
	color: rgba(255, 255, 255, 0.82);
}

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

.srv-news-grid-card > a,
.srv-query-list article,
.srv-feature-grid article,
.srv-timeline article,
.srv-contact-grid > section,
.srv-contact-form,
.srv-inline-ad,
.srv-comments {
	border: 1px solid var(--srv-line);
	border-radius: var(--srv-radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.srv-news-grid-card > a {
	min-height: 360px;
	display: flex;
	flex-direction: column;
	padding: 14px;
}

.srv-card-thumb {
	min-height: 150px;
	margin-bottom: 14px;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(2, 11, 31, 0.1), rgba(2, 11, 31, 0.82)),
		var(--srv-image, url("../images/hero-salvador-reference.png"));
	background-size: cover;
	background-position: center;
}

.srv-news-grid-card span,
.srv-news-grid-card small {
	color: var(--srv-gray);
	font-size: 0.82rem;
}

.srv-news-grid-card span {
	color: var(--srv-red-neon);
	font-weight: 900;
	text-transform: uppercase;
}

.srv-news-grid-card h2 {
	margin: 8px 0;
	font-family: var(--srv-title);
	font-size: 1.14rem;
	line-height: 1.12;
}

.srv-news-grid-card p,
.srv-query-list p,
.srv-feature-grid p,
.srv-timeline p,
.srv-contact-grid p {
	color: var(--srv-gray);
}

.nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
}

.page-numbers {
	min-width: 40px;
	height: 40px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--srv-line);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--srv-white);
	font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--srv-red);
	border-color: var(--srv-red-neon);
}

.srv-page-hero p {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.srv-showcase-page {
	display: grid;
	gap: 28px;
}

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

.srv-feature-grid article {
	min-height: 240px;
	padding: 24px;
	position: relative;
	overflow: hidden;
}

.srv-feature-grid article::after {
	content: "";
	position: absolute;
	inset: auto -30px -60px auto;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(227, 6, 19, 0.34), transparent 68%);
}

.srv-feature-grid span {
	color: var(--srv-red-neon);
	font-family: var(--srv-title);
	font-weight: 900;
}

.srv-feature-grid h2,
.srv-query-section h2,
.srv-contact-grid h2,
.srv-timeline h2 {
	margin: 8px 0 10px;
	font-family: var(--srv-title);
	line-height: 1.05;
}

.srv-timeline {
	display: grid;
	gap: 14px;
}

.srv-timeline article {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 18px;
	padding: 20px;
}

.srv-timeline strong {
	color: var(--srv-red-neon);
	font-family: var(--srv-title);
	font-size: 2rem;
	line-height: 1;
}

.srv-query-section {
	display: grid;
	gap: 18px;
}

.srv-query-list article {
	overflow: hidden;
}

.srv-query-list article > div:last-child {
	padding: 0 18px 18px;
}

.srv-query-list h3 {
	margin: 0 0 8px;
	font-family: var(--srv-title);
	font-size: 1.18rem;
	line-height: 1.15;
}

.srv-query-list a,
.srv-contact-grid a {
	color: var(--srv-red-neon);
	font-weight: 900;
}

.srv-contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 22px;
}

.srv-contact-grid > section,
.srv-contact-form {
	padding: 24px;
}

.srv-contact-form {
	display: grid;
	gap: 14px;
}

.srv-contact-form label {
	display: grid;
	gap: 7px;
	color: var(--srv-gray);
	font-weight: 800;
}

.srv-contact-form input,
.srv-contact-form textarea {
	width: 100%;
	border: 1px solid var(--srv-line);
	border-radius: 10px;
	background: rgba(2, 11, 31, 0.72);
	color: var(--srv-white);
	font: inherit;
	padding: 13px 14px;
}

.srv-contact-form textarea {
	resize: vertical;
}

.srv-inline-ad {
	margin: 34px 0;
	padding: 24px;
	background:
		linear-gradient(135deg, rgba(0, 91, 255, 0.24), rgba(227, 6, 19, 0.22)),
		rgba(255, 255, 255, 0.05);
}

.srv-inline-ad span,
.srv-tags {
	color: var(--srv-gray);
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 900;
}

.srv-inline-ad strong {
	display: block;
	margin-top: 6px;
	font-family: var(--srv-title);
	font-size: 1.45rem;
}

.srv-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
}

.srv-post-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid var(--srv-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	font-weight: 900;
}

.srv-comments {
	margin-top: 34px;
	padding: 24px;
}

.srv-comments input,
.srv-comments textarea {
	width: 100%;
	border: 1px solid var(--srv-line);
	border-radius: 10px;
	background: rgba(2, 11, 31, 0.72);
	color: var(--srv-white);
	padding: 12px;
}

@media (max-width: 1180px) {
	.srv-header-inner {
		width: min(100% - 36px, 1180px);
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.srv-menu-toggle {
		display: block;
	}

	.srv-primary-nav {
		position: fixed;
		left: 18px;
		right: 18px;
		top: 78px;
		display: none;
		padding: 18px;
		border: 1px solid var(--srv-line);
		border-radius: var(--srv-radius);
		background: rgba(2, 11, 31, 0.94);
		backdrop-filter: blur(18px);
	}

	.srv-header.is-open .srv-primary-nav {
		display: block;
	}

	.srv-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.srv-menu a {
		display: block;
		padding: 11px 0;
	}

	.srv-header-actions {
		display: none;
	}

	.srv-hero-grid {
		grid-template-columns: 1fr;
		padding: 128px 0 150px;
	}

	.srv-commemorative-panels {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.srv-weather-card {
		justify-self: stretch;
		width: auto;
	}

	.srv-main-cards {
		margin-top: -118px;
	}

	.srv-main-cards .srv-wide,
	.srv-four-blocks .srv-wide,
	.srv-ti-grid,
	.srv-destaque-grid,
	.srv-footer-inner,
	.srv-feature-grid,
	.srv-query-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.srv-destaque-grid {
		grid-template-columns: 1fr 1fr;
	}

	.srv-lead-news {
		grid-column: 1 / -1;
	}

	.srv-logo-strip {
		grid-template-columns: 1fr;
	}

	.srv-newsletter .srv-wide {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.srv-wide,
	.srv-header-inner,
	.srv-hero-grid,
	.srv-footer-inner,
	.srv-footer-bottom,
	.srv-entry {
		width: min(100% - 28px, 1180px);
	}

	.srv-brand {
		min-width: 0;
	}

	.srv-brand strong {
		font-size: 1.05rem;
	}

	.srv-brand small {
		font-size: 0.54rem;
	}

	.srv-hero {
		min-height: auto;
	}

	.srv-hero-grid {
		padding: 116px 0 120px;
	}

	.srv-hero-copy h1 {
		font-size: clamp(3.4rem, 17vw, 5.2rem);
	}

	.srv-commemorative-panels,
	.srv-main-cards .srv-wide,
	.srv-four-blocks .srv-wide,
	.srv-ti-grid,
	.srv-destaque-grid,
	.srv-territory-layout,
	.srv-indicator-grid,
	.srv-footer-inner,
	.srv-post-grid,
	.srv-feature-grid,
	.srv-query-list,
	.srv-contact-grid {
		grid-template-columns: 1fr;
	}

	.srv-timeline article {
		grid-template-columns: 1fr;
	}

	.srv-post-nav {
		align-items: stretch;
		flex-direction: column;
	}

	.srv-main-cards {
		margin-top: -80px;
	}

	.srv-logo-strip,
	.srv-newsletter {
		width: min(100% - 28px, 1180px);
	}

	.srv-news-mini {
		grid-template-columns: 82px 1fr;
	}

	.srv-four-blocks article,
	.srv-premium-ad,
	.srv-lead-news {
		min-height: 320px;
	}

	.srv-filter-head,
	.srv-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.srv-newsletter form {
		border-radius: var(--srv-radius);
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
