* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
}
:root {
	--primario:#F93549;
	--secundario: #333D47;
	--exito: #28B759;
	--header-height: 100px;
}
@media(max-width:991px) {
	:root {
		--header-height: 64px;
	}
}
.header {
    position: fixed;
    padding: 0 65px;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    height: var(--header-height);
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all ease .3s;
    box-sizing: border-box;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,.08));
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
h1 {
	font-weight: 600;
	font-size: 3.8em;
	line-height: 46px;
	letter-spacing: 0.0132em;
	color: var(--secundario);
}
h2 {
	font-weight: 400;
	font-size: 3.2em;
	line-height: 39px;
	text-align: center;
	color: var(--secundario);
	max-width: 740px;
	margin: 0 auto;
}
h2 span{
	font-weight: 600;
}
h4 {
	font-weight: 600;
	font-size: 1.4em;
	line-height: 17px;
	text-align: center;
	letter-spacing: 0.0214em;
	color: var(--secundario);
	margin-bottom: 25px;
}
p {
	font-weight: 400;
	font-size: 1.6em;
	line-height: 20px;
	letter-spacing: 0.025em;
	color: var(--secundario);
}
main {
	margin-top: var(--header-height);
}
.texto-primario {
	color: var(--primario) !important;
	font-weight: 600 !important;
}
.btn--primario, .btn--primario:active, .btn--primario:visited {
    background: var(--primario);
    border-color: var(--primario);
}
.marco {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}
.marco_banner {
	max-width: 70vw;
	position: relative;
	z-index: 1;
}
@media(max-width:1630px) {
	.marco_banner {
		max-width: 85vw;
	}
}
.banner_principal {
    width: 100%;
    aspect-ratio: 1440/410;
    background-image: url(../img/img-ahorra-futuro.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
	justify-content: center;
	position: relative;
}
.banner_principal::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%); */
}
.banner_principal h1 {
	max-width: 428px;
	margin-bottom: 15px;
}
.banner_principal p {
	font-weight: 600;
	font-size: 2em;
	line-height: 24px;
	letter-spacing: 0.015em;
	color: var(--secundario);
}
.fondo-blanco {
	background-color: #fff !important;
}
.fondo-gris {
	background-color: #f3f3f3 !important;
}
.botonera_banner {
	margin-top: 80px;
	display: flex;
	gap:15px;
}
.botonera_banner .btn{
	font-weight: 600;
	padding: 15px 20px;
}
section {
    padding: 70px 0;
    unicode-bidi: unset;
    margin: 0;
    display: flex;
    flex-direction: column;
}
section .con_laptop{
	position: relative;
	transform: translateY(56px);
}
.pb-0 {
	padding-bottom: 0;
}
.centrado {
	display: block;
	margin: 0 auto;
}
.grilla_apv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
	margin-top: 30px;
}
.item_apv {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 24px;
	gap: 16px;
	min-width: 290px;
	min-height: 152px;
	background: #FFFFFF;
	border: 1px solid #E4E7E7;
	border-radius: 8px;
}
.item_apv h3 {
	font-weight: 300;
	font-size: 1.6em;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.025em;
	color: var(--secundario);
}
.item_apv h3 span{
	font-weight: 600;
	display: block;
}
.grilla_pasos {
    display: flex;
    margin: 0 auto;
    margin-top: 70px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
	width: 100%;
}
.grilla_pasos .item_paso {
    width: 100%;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item_paso h3 {
	font-weight: 600;
	font-size: 2em;
	line-height: 24px;
	text-align: center;
	color:var(--secundario);
	margin-bottom: 15px;
}
.item_paso p {
	font-weight: 400;
	font-size: 1.6em;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.025em;
	color: var(--secundario);
	max-width: 398px;
	margin-bottom: 30px;
}
.item_paso p span{
	font-weight: 600;
}
.texto-enlace {
	color: var(--primario) !important;
	font-weight: 600 !important;
}
.texto-exito {
	color: var(--exito) !important;
	font-weight: 600 !important;
}
.botonera_centrada {
	display: flex;
    justify-content: center;
    gap: 15px;
}
.botonera_centrada a{
	font-weight: 600 !important;
}
footer {
	background: #FFFFFF;
	padding: 40px 0;
	display: flex;
	align-items: center;
	gap:65px;
}
footer p {
	font-weight: 400;
	font-size: 1.2em;
	line-height: 17px;
	color:var(--secundario);
}
.item_reconocimientos {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 234px;
	/* height: 227px; */
	padding: 20px;
	background: #FFFFFF;
	box-shadow: 0px 2px 8px 0px #00000014;
}
.item_reconocimientos span{
	font-weight: 600;
	font-size: 2em;
	line-height: 24px;
	text-align: center;
	color: var(--secundario);
	margin-top: 10px;
}
.grilla_reconocimientos {
    display: flex;
    justify-content: center;
    gap: 30px;
	margin-bottom: 40px;
}
a.enlace {
	font-weight: 600;
	font-size: 1.6em;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.025em;
	text-decoration-line: underline;
	color:var(--primario);
}
.box-info {
	display: flex;
	flex-direction: column;
	padding: 40px;
	gap: 20px;
	background: #FFFFFF;
	border-radius: 8px;
	border: 1px solid #DBDBDB;
}
.text-center {
	text-align: center;
}
.ui-accordion .ui-accordion-header {
	font-weight: 600;
	font-size: 1.6em;
	line-height: 20px;
	letter-spacing: 0.025em;
	color: var(--secundario);
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	background: white;
	border: none;
	border-bottom: 1px solid #ccbde3;
	margin-top: 40px;
	transition: all ease .3s;
	cursor: pointer;
}
.ui-accordion .ui-accordion-header.ui-state-active {
	border-bottom: 1px solid transparent;
}
.ui-accordion .ui-accordion-header:first {
	margin-top: 0;
}
.ui-accordion .ui-accordion-content {
	padding: 20px 0;
    overflow: unset;
    height: auto;
    border: none;
}
.ui-state-active + .ui-accordion-content {
	border-bottom: 1px solid #ccbde3;
}
.ui-accordion .ui-accordion-header .icono {
	background: none;
	font-size: 30px;
}
.video-youtube {
	display: flex;
	flex: 1;
	align-items: center;
}
.video-youtube iframe {
    width: 100%;
    max-width: 942px;
    aspect-ratio: 560/315;
    margin: 30px auto 50px;
}
.item_grilla_pasos {
	display: flex;
	align-items: center;
	padding: 24px;
	gap: 24px;
	width: 100%;
	max-width: 453px;
	background: #FFFFFF;
	border: 1px solid #E4E7E7;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}
.item_grilla_pasos h3{
	font-weight: 600;
	font-size: 3.2em;
	line-height: 39px;
	display: flex;
	align-items: center;
	text-align: center;
	letter-spacing: 0.0109em;
	color: #F93549;
}
.item_grilla_pasos p {
	font-weight: 400;
	font-size: 1.8em;
	line-height: 22px;
	letter-spacing: 0.0111em;
	color: var(--secundario);
}
.item_grilla_pasos p .texto-exito {
    display: block;
    font-size: 2rem;
    line-height: 25px;
}
.owl-carousel .owl-stage-outer {
	padding-top:10px;
	padding-bottom:10px;
}
.item_reconocimientos.item img {
    width: auto;
}
.owl-reconocimientos {
	margin-bottom: 50px;
}
#accordion {
	visibility: hidden;
}
#accordion.ui-accordion {
	visibility: visible;
}
.logo_escritorio {
	display: block;
}
.logo_movil {
	display: none;
}
.banner-seo {
	display: none;
}
.item.item-fix-solo_responsive {
	display: none;
}
@media(max-width:1279px) {
	.marco_banner {
		max-width: 100%;
		padding: 0 1.5rem;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.banner_principal h1 {
		max-width: 100%;
		text-align: center;
	}
	.banner_principal p {
		text-align: center;
		margin-bottom: auto;
	}
	.botonera_banner {
		justify-content: center;
	}
	
}
@media(max-width:991px) {
	header.header {
		padding: 25px;
	}
	section.banner_principal {
		padding: 60px 0 30px;
		background-image: url(../img/banner-movil.jpg);
		aspect-ratio: 1/1.65;
		max-height: 685px;
	}
	.banner_principal::after {
		background: linear-gradient(341.22deg, #6F6F71 -20.23%, rgba(102, 102, 102, 0) 47%);
	}
	.botonera_banner {
		flex-direction: column;
	}
	section {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
	.logo_escritorio {
		display: none;
	}
	.logo_movil {
		display: block;
	}
	footer {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 1.5rem 30px;
		gap: 30px;
	}
}
@media(max-width:767px) {
	h1 {
		font-size: 3.2em;
		line-height:normal;
	}
	h2 {
		font-size: 2.4em;
		line-height: normal;
	}
	.botonera_centrada {
		flex-direction: column;
	}
	.item_apv {
		width: calc(50% - 8px);
		min-width: auto;
		padding: 5px;
	}
	.grilla_apv {
		justify-content: flex-start;
	}
	.item_apv:nth-child(even) {
		transform: translateY(85px);
	}
	.item_apv h3 {
		font-size: 1.4em;
	}
	.owl-item {
		display: flex;
		justify-content: center;
	}
	.btn {
		height: 56px;
	}
}
@media(max-width:575px) {
	.owl-carousel .owl-item {
		min-width: 52vw;
	}
	.item.item-fix-solo_responsive {
		display: block;
	}
}
@media(max-width:375px) {
	.item_grilla_pasos {
		align-items: flex-start;
	}
	.item_grilla_pasos h3 {
		line-height: 32px;
	}
}