:root {
	--bg: #eff4ff;
	--ink: #0f172a;
	--muted: #4b5563;
	--line: #c8d4ef;
	--surface: #ffffff;
	--brand: #0b63f3;
	--brand-dark: #084ab6;
	--accent: #00a78e;
	--radius: 18px;
	--soft-shadow: 0 18px 36px rgba(9, 35, 86, 0.14);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 8% 7%, rgba(11, 99, 243, 0.18), transparent 34%),
		radial-gradient(circle at 88% 2%, rgba(0, 167, 142, 0.13), transparent 28%),
		linear-gradient(180deg, #f2f7ff 0%, #edf2ff 58%, #e8eefc 100%);
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(237, 244, 255, 0.86);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(97, 124, 178, 0.24);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}

.logo {
	display: inline-flex;
	flex-direction: column;
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: 1.35rem;
	letter-spacing: 0.01em;
	line-height: 1;
	text-decoration: none;
	color: var(--ink);
}

.logo span {
	font-family: "Manrope", sans-serif;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-dark);
	margin-top: 2px;
}

.top-nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

.top-nav a {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e2b45;
	text-decoration: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	text-decoration: none;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-solid {
	background: linear-gradient(135deg, var(--brand) 0%, #2c78f8 62%, #40a0ff 100%);
	color: #fff;
	box-shadow: 0 12px 24px rgba(11, 99, 243, 0.34);
}

.btn:hover {
	transform: translateY(-2px);
}

.hero-top {
	margin-top: 8px;
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	background: #cfdaf0;
	border-bottom: 3px solid rgba(11, 99, 243, 0.3);
}

.hero-top img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	filter: saturate(1.05) contrast(1.04);
}

.hero-action-wrap {
	display: flex;
	justify-content: center;
	padding: 14px 0 8px;
}

.whatsapp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, #16a34a 0%, #1fb75c 100%);
	box-shadow: 0 10px 22px rgba(17, 115, 54, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(17, 115, 54, 0.34);
}

.intro {
	padding: 24px 0 14px;
	text-align: center;
}

.intro-tag {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	color: var(--accent);
}

.intro h1 {
	margin: 8px auto 10px;
	max-width: 20ch;
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: clamp(1.9rem, 4.4vw, 3.4rem);
	line-height: 1.06;
	letter-spacing: 0.01em;
}

.intro p {
	margin: 0 auto;
	max-width: 72ch;
	color: var(--muted);
}

.info-grid {
	padding: 18px 0 8px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.info-card {
	background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--soft-shadow);
}

.info-card h2 {
	margin: 0;
	font-size: 1.2rem;
	color: #0e2a6e;
}

.info-card p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.legal {
	padding: 14px 0 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.legal-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: 0 8px 16px rgba(23, 52, 104, 0.1);
}

.legal-card h3 {
	margin: 0;
	font-size: 1.08rem;
	color: #163a8a;
}

.legal-card p {
	margin: 8px 0 0;
	font-size: 0.93rem;
	color: var(--muted);
}

.cta-band {
	margin-top: 30px;
	background: linear-gradient(122deg, #0e2564 0%, #103389 52%, #0b63f3 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	top: -165px;
	right: -120px;
	background: rgba(255, 255, 255, 0.1);
}

.cta-content {
	position: relative;
	text-align: center;
	padding: 50px 0;
}

.cta-content h2 {
	margin: 0;
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: clamp(1.7rem, 4vw, 2.8rem);
	line-height: 1.1;
}

.cta-content p {
	margin: 8px auto 20px;
	max-width: 58ch;
	color: rgba(255, 255, 255, 0.88);
}

.site-footer {
	padding: 28px 0 22px;
	background: #e9effd;
	border-top: 1px solid #cad7f2;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 16px;
}

.footer-grid h3 {
	margin: 0 0 8px;
	color: #102e77;
	font-size: 1rem;
}

.footer-grid p {
	margin: 0;
	color: #465b88;
}

.footer-grid a {
	display: block;
	margin-bottom: 6px;
	text-decoration: none;
	font-weight: 700;
	color: #1c407f;
}

.copyright {
	margin: 16px 0 0;
	text-align: center;
	font-size: 0.88rem;
	color: #5a6f98;
}

@media (max-width: 920px) {
	.top-nav {
		display: none;
	}

	.info-grid,
	.legal,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.nav-wrap {
		padding: 10px 0;
	}

	.nav-wrap > .btn {
		display: none;
	}

	.whatsapp-btn {
		width: min(92%, 360px);
	}

	.info-grid,
	.legal,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
