:root {
	--brand-blue-dark: #143b8a;
	--brand-blue: #2d6fbe;
	--brand-blue-soft: #eaf2ff;
	--brand-red: #e6273d;
	--text-strong: #141414;
	--text-soft: #4d5562;
	--surface: #ffffff;
	--line: #dce6f7;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Segoe UI", Arial, sans-serif;
	color: var(--text-strong);
	background:
		radial-gradient(circle at 0 0, #d9ebff 0%, rgba(217, 235, 255, 0) 35%),
		linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.page-shell {
	width: min(1040px, calc(100% - 2.5rem));
	margin: 2rem auto;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(15, 40, 85, 0.08);
}

.hero {
	position: relative;
	text-align: center;
	padding: 2.7rem 2rem 2.2rem;
	background: #ffffff;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: -70% 65% 28% -38%;
	border-radius: 50%;
	background: linear-gradient(135deg, #35a2f0 0%, #20428e 62%, #2f2f91 100%);
	opacity: 0.98;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto -8% 0 -8%;
	height: 56px;
	background: linear-gradient(90deg, #2d6fbe 0%, #2247a5 55%, #2f2f91 100%);
}

.hero-logo,
.hero-tag,
.hero h1,
.hero-description,
.hero-status {
	position: relative;
	z-index: 1;
}

.hero-logo {
	width: min(520px, 100%);
	height: auto;
}

.hero-isotipo {
	width: 200px;
	height: auto;
	object-fit: contain;
}

.hero-logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.9rem;
	margin-left: 350px;
}

.hero-logo-container img {
	display: block;
	max-width: 100%;
	height: auto;
}

.hero-tag {
	margin: 0.6rem 0 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--brand-blue-dark);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero h1 {
	margin: 0.8rem 0 0.65rem;
	color: var(--brand-red);
	font-size: clamp(1.9rem, 4.2vw, 2.8rem);
	line-height: 1.12;
}

.hero-description {
	width: min(760px, 100%);
	margin: 0 auto;
	color: var(--text-soft);
	font-size: clamp(1rem, 2vw, 1.12rem);
	line-height: 1.55;
}

.hero-status {
	width: fit-content;
	margin: 1.25rem auto 0;
	padding: 0.5rem 0.95rem;
	background: var(--brand-blue-soft);
	border: 1px solid #bdd3f8;
	border-radius: 999px;
	color: var(--brand-blue-dark);
	font-weight: 700;
}

.content {
	padding: 2rem;
	background: #fbfdff;
}

.card {
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 1.4rem 1.25rem;
	background: #ffffff;
}

.services h2 {
	margin: 0;
	color: var(--brand-red);
	text-align: center;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.services ul {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.services li {
	text-align: center;
	color: #1b2233;
	font-size: 1.05rem;
	line-height: 1.45;
	font-weight: 600;
}

.footer {
	padding: 1.4rem 1.5rem 1.7rem;
	background: linear-gradient(100deg, #2d6fbe 0%, #2247a5 55%, #2f2f91 100%);
	color: #ffffff;
	text-align: center;
}

.footer h2 {
	margin: 0;
	font-size: 1.4rem;
}

.footer-contacts {
	margin-top: 0.8rem;
	display: grid;
	gap: 0.45rem;
}

.footer-contacts a,
.footer-contacts p {
	margin: 0;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
}

.footer-contacts a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.page-shell {
		width: calc(100% - 1.2rem);
		margin: 0.8rem auto;
		border-radius: 12px;
	}

	.hero {
		padding: 1.8rem 1rem 1.5rem;
	}

	.hero::before{
		inset: -20% 65% 58% -60%;
	}

	.hero-logo-container {
		margin-left: 0;
		flex-direction: column;
		gap: 0.55rem;
	}

	.hero-isotipo {
		width: 104px;
	}

	.hero-logo {
		width: min(320px, 90vw);
        margin-left: 20%;
	}

	.content,
	.footer {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.services li,
	.footer-contacts a,
	.footer-contacts p {
		font-size: 1rem;
	}
}
