/* HERO */
.hero {
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 560px;
	display: flex;
	align-items: stretch;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.55);
	z-index: 0;
	object-position: center;
	transform: scale(1.4);
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	min-height: 560px;
}

.hero-card {
	background: rgba(255, 255, 255, 0.88);
	border-radius: 20px;
	padding: 40px 36px;
	max-width: 500px;
	backdrop-filter: blur(8px);
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-logo {
	max-width: 200px;
	height: auto;
	margin: 0 auto 16px;
	display: block;
}

.hero-subtitle {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
}

.hero-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: #001367;
	margin-bottom: 16px;
	line-height: 1.2;
}

.hero-desc {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 16px;
	line-height: 1.6;
}

.hero-receptor {
	font-size: 1.6rem;
	font-weight: 800;
	color: #001367;
	margin-bottom: 24px;
}

.hero-mascot {
	position: absolute;
	bottom: 0;
	right: 20px;
	z-index: 2;
}

.hero-mascot img {
	max-height: 560px;
	width: auto;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
	display: block;
}

@media (max-width: 768px) {
	.hero {
		min-height: auto;
	}

	.hero-inner {
		flex-direction: column;
		align-items: center;
		padding: 24px 16px 0;
		min-height: auto;
		gap: 0;
	}

	.hero-card {
		max-width: 100%;
		padding: 28px 24px;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.hero-mascot {
		display: flex;
		justify-content: center;
		position: relative;
		bottom: auto;
		right: auto;
		width: 100%;
		margin-top: -16px;
	}

	.hero-mascot img {
		max-height: 380px;
		width: auto;
	}
}
