.mexlife-hero-block {
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	overflow: hidden;
	color: #ffffff;
	padding: 80px 60px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	min-height: 440px;
	display: flex;
	align-items: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Card float effect */
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 40px auto;
	box-sizing: border-box;
}

.mexlife-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(20, 29, 43, 0.95) 0%, rgba(20, 29, 43, 0.4) 100%);
	z-index: 1;
}

.mexlife-hero-content {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.mexlife-hero-badge {
	display: inline-block;
	background-color: rgba(33, 163, 102, 0.2);
	color: #2fc377;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
}

.mexlife-hero-title {
	font-size: 48px;
	line-height: 1.1;
	font-weight: 800;
	margin: 0 0 20px 0;
	color: #ffffff;
}

.mexlife-hero-title .highlight,
.mexlife-hero-title b,
.mexlife-hero-title strong {
	color: #2fc377;
}

.mexlife-hero-description {
	font-size: 16px;
	line-height: 1.5;
	color: #e2e8f0;
	margin-bottom: 35px;
	font-weight: 400;
	max-width: 500px;
}

.mexlife-hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.mexlife-hero-buttons .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.mexlife-hero-buttons .btn-primary {
	background-color: #21a366;
	color: #ffffff;
	border: none;
	padding: 14px 32px;
}

.mexlife-hero-buttons .btn-primary:hover {
	background-color: #1c8b57;
}

.mexlife-hero-buttons .btn-secondary {
	background-color: rgba(43, 48, 54, 0.85);
	color: #ffffff;
	border: none;
	backdrop-filter: blur(5px);
}

.mexlife-hero-buttons .btn-secondary:hover {
	background-color: rgba(43, 48, 54, 1);
}

@media (max-width: 768px) {
	.mexlife-hero-block {
		padding: 50px 25px;
		text-align: center;
	}

	.mexlife-hero-overlay {
		background: linear-gradient(to bottom, rgba(20, 29, 43, 0.95) 0%, rgba(20, 29, 43, 0.7) 100%);
	}

	.mexlife-hero-title {
		font-size: 36px;
	}

	.mexlife-hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.mexlife-hero-buttons {
		justify-content: center;
	}
}