
.hero{
	position: relative;
	height: auto; 
	background: #1a2e42; 
	margin-bottom: -3px;
	overflow: hidden;
}

.hero:has(.hero-badge)+section{
	padding-top: 150px;
}
.hero-image{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.hero-image>img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-caption{
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	min-height: 65dvh;
	background-color: rgba(26, 46, 66,.5);
	text-align: center;
	color: white;
	padding: 180px 0 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-caption em.date{
	position: relative;
	font-style: normal;
	display: inline-block;
	padding: 10px;

}
.hero-caption em.date::after{
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 70px;
	height: 2px;
	background-color: white;
	content:""
}
.hero-caption em.date::before{
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 70px;
	height: 2px;
	background-color: white;
	content:""
}
.hero-caption h1{
	font-weight: 900;
	margin-top: 20px;
}
.hero-caption .hero-cont a{
	color: inherit;
	text-decoration: underline;
}
.hero-caption .hero-cont a:hover{color: #1e73be;}


.hero-badge{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	transform: translateY(50%);
}

.hero-badge--inner{
	background-color: #A53692;;
	border-radius: 20px 20px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	color: white;
	width: 100%;
	flex-wrap: wrap;
	
}
.hero-badge-col{
	position: relative;
	padding: 15px;
	font-size: 18px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	flex: 0 0 auto;
	width: 100%;
	max-width: 33%;
}

.hero-badge-col__header{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: 100%;
	background-color: white;
	border-radius: 20px;
	padding: 15px;
	color: #A53692;
	width: 100%;

}
.hero-badge-col__header>i{font-size: 32px!important;}

a.hero-badge-col:hover{
	color: white;
	text-decoration: none;
}
a.hero-badge-col:hover .hero-badge-col__header{
	background-color: #A53692;
	color: white;
	text-decoration: none;
	border: 1px solid white;
}
@media (max-width: 1024px) {
	.hero .container {
    	max-width: none!important;
  	}
}
@media (max-width: 768px) {
	.hero .container {
    	max-width: none!important;
  	}
	.hero-badge--inner{
		justify-content: center;
	}
    .hero-badge-col {
        max-width: 50%;
		flex: 1 1 50%;
	}
}
@media (max-width: 600px) {
	.hero .container {
    	max-width: none!important;
  	}
	.hero-badge {
    position: relative;
    z-index: 3;
    transform: translateY(-50%);
	}

    .hero-badge-col {
        max-width: 100%;
		flex: 1 1 100%;
	}
}



.cuenta-regresiva {
	display: inline-flex;
	gap: 20px;
	justify-content: center;
	font-family: sans-serif;
	width: auto;
	background-color: #A53692;
	border-radius: 8px;
	margin-top: 30px;
	padding: 20px;
}
.cr-item {
	text-align: center;
	min-width: 70px;
	padding: 10px;
	background-color: white;
	border-radius: 5px;
	color: black;
	position: relative;
}
.cr-valor {
	display: block;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1;
	transition: all 0.25s ease;
}
.cr-valor.cr-tick {
	opacity: 0.4;
}
.cr-label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	opacity: 0.7;
	margin-top: 0px;
	line-height: 1.1;
}


.cuenta-regresiva .btn{
	display: inline-flex;
	align-self: center;
	color: black;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
}
@media (min-width: 580px) {
	.cr-item:nth-child(4){
		margin-right: 15px;
	}
	.cr-item:nth-child(4)::after{
		position: absolute;
		left: calc(100% + 18px);
		top: 0;
		width: 1px;
		height: 100%;
		background-color: white;
		content: "";
		opacity: .3;
	}
}

@media (max-width: 580px) {
	.cuenta-regresiva {
		width: 100%;
		padding: 10px;
		position: relative;
		padding-bottom: 70px;
		gap: 10px;
	}
	.cr-item {
		padding: 8px;
		min-width: calc(25% - 10px);
	}
	.cr-valor {
		font-size: 1.5rem;
	}
	.cuenta-regresiva .btn{
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom:10px;
		align-self: center;
		display: inline-flex;
		width: auto;
	}
}