.scroll-indicator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	animation: bounce 2s infinite;
	cursor: pointer;
}

.scroll-indicator::after {
	content: '↓';
	font-size: 2rem;
	opacity: 0.8;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}


.hero {
	margin-top: 58px;
	width: 100vw;
	position: relative;
	text-align: center;
	height: 80vh;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	/* above mask */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	color: white;

	/* spread top + middle + bottom */
}

.hero-title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}


.hero-adjetivos {
	display: flex;
	flex-direction: row;
	margin-left: 20px;
	gap: 10px;
}

.hero-adjetivos h3 {
	font-size: 12px;
	background: rgba(0, 0, 0, 0.5);
	border-top: 4px solid #D12300;
	padding: 6px 12px;
	color: white;
	font-weight: 500;
	transition: all .2s ease-in-out;
}

.hero-adjetivos h3:hover {
	transform: scale(1.1);
}

.hero-contactar-button {
	background-color: #D12300;
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(209, 35, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
}


.hero-adj-title-wrap {

	display: flex;
	align-items: center;
	flex-direction: column;
	/* vertical alignment */
	justify-content: center;
	text-align: center;
	margin-bottom: 50px;
	/* keeps content centered as a group */

}







@media (width >=700px) {
	.hero-title {
		font-size: 5rem;
	}

	.hero-adjetivos h3 {
		font-size: 22px;
		background: rgba(0, 0, 0, 0.5);
		padding: 6px 12px;
		color: white;
		font-weight: 500;
		transition: all .2s ease-in-out;
	}

	.hero-contactar-button {
		font-size: 1.6rem;
	}
}



@media (width >=1200px) {
	.hero-title {
		font-size: 6rem;
	}

	.hero-adjetivos h3 {
		font-size: 25px;
		background: rgba(0, 0, 0, 0.5);
		padding: 6px 12px;
		color: white;
		font-weight: 500;
		transition: all .2s ease-in-out;
	}

	.hero-contactar-button {
		font-size: 2.0rem;
	}
}
