.hero-internal {
	position: relative;
	width: 100%;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-internal::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-internal-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	margin-top: 100px;
	max-width: 1000px;
}

.hero-internal-title {
	font-family: 'Dolphins', cursive, sans-serif;
	font-size: 110px;
	color: var(--blanco, #FFFFFF);
	text-wrap: balance;
	line-height: 1.1;
	margin: 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
	.hero-internal {
		min-height: 400px;
	}

	.hero-internal-title {
		font-size: 80px;
	}
}

@media (max-width: 767px) {
	.hero-internal {
		min-height: 380px;
	}

	.hero-internal-title {
		font-size: 60px;
	}
}