.hero-section {
	background: linear-gradient(163deg, #ff737a 8%, #e7000b 50%, #c10007 69%);
	padding: 4rem 0;
	position: relative;
	overflow:hidden;
}

.hero-badge{
	font-size:1rem;
	font-weight:200;
	background-color: var(--color-bg-badge);
	padding:0.8rem 1.8rem;
	margin:0 0 2rem 0;
}

.hero-display{
	font-size:3rem;
	font-weight:300;
	line-height:1;
	margin-bottom:2rem;
}

.hero-lead{
	font-size:1.5rem;
	font-weight:200;
	color:var(--color-text-light);
	margin-bottom:2rem;
}

.owl-carousel .owl-stage-outer{
	overflow:visible;
}

.hero-image-wrapper {
	width:100%;
	position: relative;
	z-index: 2;
	overflow:hidden;
	border-radius:1rem;
	box-shadow:0 1rem 2rem rgba(0,0,0,0.5);
}



.floating-whatsapp {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	width:5.5rem;
	height:5.5rem;
	z-index: 3;
	animation: float 3s ease-in-out infinite;
}
.floating-whatsapp img{
	width:100%;
	height: auto;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0px); }
}

@media screen and (min-width:768px) {
	.hero-section {
		padding: 6.3rem 0;
	}
	.hero-display{
		font-size:4.5rem;
		margin-bottom:2rem;
	}
	.hero-lead{
		margin-bottom:2rem;
	}
	.floating-whatsapp {
		left: -2rem;
	}
}