.hero-wrapper {
	height: 90vh;
	background:
		linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('/images/persianas/Celulares/Celular traslucida gris.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	gap: 30px;
	position: relative;
}


shv-button {
	display: flex;
	flex-direction: column;

}

.shv-text {
	display: flex;
	flex-direction: column;
}




.hero-wrapper h1 {
	font-size: 30px;
	font-weight: bold;
	width: 80vw;
	text-align: center;
	color: white;
}

.hero-wrapper-h1 {
	font-size: 30px;
	font-weight: bold;
	width: 80vw;
	text-align: center;
	color: white;
}

.hero-wrapper p {
	font-size: 15px;
	width: 80vw;
	text-align: center;
	color: white;
}

.hero-wrapper-p {
	font-size: 15px;
	width: 80vw;
	text-align: center;
	color: white;
}

.cta-button {
	background-color: #D12300;
	/* Your brand red */
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
	box-shadow: 0 4px 15px rgba(209, 35, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;

	text-decoration: none;
}

.cta-button:hover {
	background-color: #B01E00;
	/* Darker red on hover */
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(209, 35, 0, 0.4);
	/* removes underline */
}

.cta-button:active {
	transform: translateY(0);
}


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

.scroll-indicator::after {
	content: '↓';
	font-size: 3rem;
	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);
	}
}




@media (width >=1200px) {
	.hero-wrapper h1 {
		font-size: 70px;
		width: 60vw;
		text-align: center;
		color: white;
	}

	.hero-wrapper p {
		font-size: 35px;
		width: 80vw;
		text-align: center;
		color: white;
	}

	.cta-button {
		padding: 15px 30px;
		font-size: 3.2rem;
		font-weight: 600;
	}

}
