:root {
	--bg: #eff0f0;
	--text: #005157;
	--shadow: 0 12px 24px rgba(126, 140, 141, 0.16);
	--card-radius: 24px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	font-family: "Open Sans", Arial, sans-serif;
	background: var(--bg);
}

body {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 40px;
}

.container-cortesia {
	position: relative;
	max-width: 920px;
	height: 550px;
	padding: 40px;
	border-radius: var(--card-radius);
	background: radial-gradient(
		60% 42% at 50% 10%,
		#fafafa 0%,
		#ffffff 100%
	);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	gap: 32px;
	overflow: hidden;
}

/* Soft gradient border */
.container-cortesia::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		180deg,
		rgba(0, 174, 101, 0.45) 0%,
		rgba(5, 135, 142, 0.08) 100%
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.logo {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	position: relative;
	z-index: 1;
}

.logo-left,
.logo-right {
	height: 68px;
	width: auto;
	object-fit: contain;
}

.info {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	color: var(--text);
	position: relative;
	z-index: 1;
}

.description {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 700px;
}

.title {
	margin: 0;
	max-width: 560px;
	color: var(--text);
	font-size: 36px;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: 0;
}

.description-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.description-text {
	max-width: 700px;
	color: var(--text);
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
}

.description-text strong,
.description-text b {
	font-weight: 700;
}

.info-small.desktop {
	display: block;
	text-align: center;
	color: var(--text);
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.info-small.mobile {
	display: none;
}

.info-small.desktop a,
.info-small.mobile a {
	color: var(--text);
	text-decoration: none;
}

.info-small.desktop a:hover,
.info-small.mobile a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	body {
		padding: 16px;
	}

	.container-cortesia {
		width: 100%;
		height: 608px;
		padding: 24px 16px;
		border-radius: 22px;
		justify-content: space-between;
	}

	.logo-left,
	.logo-right {
		height: 50px;
	}

	.info {
		height: fit-content;
	}

	.description {
		gap: 22px;
	}

	.title {
		max-width: 100%;
		font-size: 22px;
		line-height: 28px;
	}

	.description-text-wrapper {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.description-text {
		font-size: 16px;
		line-height: 1.45;
	}

	.info-small.mobile{
		display: block;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		color: var(--text);
		font-weight: 400;
		position: relative;
		z-index: 1;
	}

	.info-small.desktop {
		display: none;
	}
}
