/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Montserrat:wght@300;400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

@font-face {
	font-family: familiagibson;
	src: url(../fonts/Gibson/Gibson-SemiBold.ttf);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Euclid Circular A", "Poppins";

}

.clearfix {
	float: none;
	clear: both;
}

body {
	/*color: #f7f7f7;*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	animation: caerBilletes 10s infinite linear;
	/* Aplica la animación suave */

}






/*CABECERA*/

#header {
	background-color: #004aad;

	color: white;
	height: 80px;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: 0.7s;


}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
}



header.abajo {

	border-bottom: 1px solid rgb(233, 233, 233);
	/*padding: 15px 20px;*/

	background-color: #004aad;
}


header.abajo #logo span,
header.abajo ul li a {
	color: white !important;
}

#header .menu {
	display: flex;
	justify-content: flex-end;
	width: 100%;

	/*line-height: 140px;*/


}


/* Estilos para el menú hamburguesa */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger div {
	width: 25px;
	height: 3px;
	background-color: white;
}

/* Estilos para el menú en móvil */
.nav-mobile {
	display: none;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	background-color: #50007f;
	padding: 10px 0;
	text-align: center;
}

.nav-mobile a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	padding: 10px 0;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}


	.nav-links li:first-child {
		margin-top: 180px;
	}


	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100vw;
		height: 100vh;

		background-color: white;
		/*justify-content: center;
        align-items: center;*/
		z-index: 10;
		padding: 10px 0;
		text-align: center;

	}

	.nav-links.active a {
		padding: 10px 0;
		color: #004aad;
	}

	/* Evitar el scroll en el menú activo */
	body.menu-open {
		overflow: hidden;
	}

	.hamburger {
		display: flex;
	}
}


.btn {
	display: block;
	width: 100%;
	margin: 0 auto;
	/*padding: 8px;*/
	/*background: #24c78e;*/
	border: none;
	text-decoration: none;
	/*font-size: 15px;*/
	color: #a2b5cd;


}


.btn a {
	color: #fafafa !important;
}


#texto {
	height: 110px;
}











/*FIN DE LA CABECERA*/

/*BOTONES*/

.solicitar {
	width: 20%;
	margin-bottom: 20px;
	font-size: 1rem;
	position: relative;
	height: 55px;
	border: none;
	color: white;
	background: #24c78e;
	border-radius: 25px;
	cursor: pointer;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	font-family: 'Poppins', sans-serif;

}

.two {
	border: 2px solid white;
	margin-top: 95px;
	box-shadow: none;
}


#container-principal {
	width: 100%;
	height: 600px;
	display: block;
	padding: 20px;
	text-align: center;
	background-color: #004aad !important;
	border-bottom-right-radius: 72px;
	border-bottom-left-radius: 72px;

}




#content {
	position: relative;
	width: 100%;
	height: 600px;
	margin: 25px;
	margin: 0 auto;

	padding: 15px;
	z-index: 1;
}


#content h1 {
	text-align: center;
	font-size: 70px;
	margin-top: 120px;
	font-weight: 900;
	color: #fafafade;
}




.titulo {
	position: absolute;
	/*margin-left: 42px;*/

	font-size: 35px;
	font-weight: 400;
	text-align: center;

}

.titulo-2 {
	position: absolute;
	margin-left: 122px;
	
	font-size: 25px;
	font-weight: 400;
	text-align: center;

}

.titulo-2 span {
	margin-left: 12px;

	font-size: 40px;
	font-weight: bold;
	text-align: center;
	color: #333333;
	
}



.circle .value {
	color: black;
}

.value,
.output {
	position: relative;
	/* Para que solo los valores numéricos se muevan */
}

.value,
.output span {
	position: relative;
}

.output {
	display: flex;
	align-items: center;
	/* Alinea el texto y el número verticalmente */
	gap: 5px;
	/* Ajusta el espacio entre el texto y el número */
}

.box {
	position: relative;
	display: block;
	width: 70%;
	height: 250px;
	text-align: center;
	background: #f3eef6;
	border-radius: 15px;
	margin-left: 200px;
	margin: 0 auto;
	padding-top: 55px;



}


.box .slider {
	-webkit-appearance: none;
	width: 80%;
	height: 15px;
	margin-left: 30px;
	background: #fafafa;
	outline: none;
	opacity: 0.7;
	-webkit-transition: 0.2s;
	transition: opacity 0.2s;
	border-radius: 12px;
	margin-top: 55px;
	margin-bottom: 40px;
	background-color: #24c78e;
	

}

.slider:hover {
	opacity: 1;
}




.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 35px;
	height: 35px;
	background: white;
	border: 2px solid #24c78e;
	border-radius: 50%;
	cursor: pointer;
}

.slider::-webkit-progress-value {
	background-color: #da000b;
	height: 10px;


}

.slider::-moz-range-progress {
	background: #ff5305;
	height: 15px;
	border-radius: 12px;
}

.slider::-moz-range-thumb {
	/*pelotita*/
	width: 35px;
	height: 35px;
	background: white;
	border: 2px solid #ff5305;
	border-radius: 50%;
	cursor: pointer;
}


/*REQUISITOS*/

.requisitos {
	width: 100%;
	height: 500px;
	background-color: #24c78e !important;
	margin: 0 auto;
	margin-top: 150px;
	margin-bottom: 150px;
	display: block;
	padding-top: 90px;
	text-align: center;
	background-color: white;
	border-top-left-radius: 72px;
	/* Radio de la esquina superior izquierda */
	border-top-right-radius: 72px;
	/* Radio de la esquina superior derecha */
	color: #333333;
	text-align: center;
}

.requisitos ul li {
	list-style: none;
}



.content-buttom {

	display: flex;
	position: relative;
	width: 80%;
	height: 150px;
	line-height: 150px;
	font-size: 28px;
	font-weight: 500;
	background-color: #50007f;
	color: white;
	text-align: center;
	padding: 10px;
	margin: 0 auto;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}


.content-buttom span {
	text-align: center;
	margin: 0 auto;
}




/*PIE DE PAGINA*/

#conditions {
	width: 100%;
	height: 400px;
	background-color: #fafafabe;
	padding: 25px;
	-webkit-border-top-left-radius: 72px;
	-webkit-border-top-right-radius: 72px;
	-moz-border-radius-topleft: 72px;
	-moz-border-radius-topright: 72px;
	border-top-left-radius: 72px;
	border-top-right-radius: 72px;


}

#conditions .textos {
	width: 100%;
	height: 400px;
	text-align: center;


}

#conditions .textos p {

	font-size: 14px;
	font-weight: 400;
	text-align: center;
	padding-top: 100px;
	color: #333333;



}

#conditions #cft {
	font-size: 50px;
	color: #333333;
	text-align: center;
	font-weight: bold;
	margin-bottom: 110;
	padding: 0;
}

/*PIE DE PAGINA*/

.btn {
	display: block;
	width: 100%;
	margin: 0 auto;
	/*padding: 8px;*/
	/*background: #24c78e;*/
	border: none;
	text-decoration: none;
	/*font-size: 15px;*/
	color: #a2b5cd;

}




#bases {

	clear: both;
	width: 100%;
	background-color: white;
	/*margin-top: 15PX;*/
}

#bases .textos p {
	color: #333;
	text-align: center;
	font-size: 18px;
}

#bases .logos {
	margin-top: 15px;
	text-align: center;
}

#bases .cft {
	font-size: 50px;
	color: #333333;
	text-align: center;

	font-weight: bold;
	/*margin-bottom: 110;*/
	padding: 0;
}

.section-one {
	position: relative;
	left: 0;
	bottom: 0px;
	width: 100%;
	background: #172940;
	padding-top: 60px;
	/*margin-top: 15px;*/
}

.faq-section {
	width: 100%;
	max-width: 800px;
	/*height: auto;*/
	margin: auto;
	padding: 20px;
	margin-top: -150px;
	margin: 80px auto 0 auto;
}

.faq-title {
	font-size: 28px;
	margin-bottom: 20px;
	text-align: center;
	color: rgba(0, 0, 0, 0.719);
}

.faq-item {
	margin-bottom: 10px;
}

.faq-question {
	font-size: 20px;
	cursor: pointer;
	padding: 15px;
	background-color: #f1f1f1;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question .arrow i {
	transition: transform 0.3s ease;
}

.faq-question.active .arrow i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	padding: 0 15px;
	background-color: #fafafa;
	border-left: 3px solid #75d481;
}

.faq-answer p {
	margin: 10px 0;
	text-align: justify;
}


footer {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin: 0 30px;
}

/*CARDS*/

.cards {
	width: 65%;
	display: flex;
	flex-wrap: wrap;
	/* Permite que los divs se ajusten a la siguiente línea si es necesario */
	gap: 80px;
	/* Espacio entre los divs */
	margin-top: 45px;
}

.boxing {
	min-height: 200px;
	background-color: rgb(255, 255, 255);
	padding: 30px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 25px;
	flex: 1;
	font-weight: 500;
	/* Hace que los divs ocupen el mismo tamaño */
}

/* Estilos para pantallas grandes */
@media screen and (min-width: 768px) {
	.cards {
		flex-direction: row;
		/* Acomoda los divs en fila (horizontal) */
	}

	.boxing {
		min-height: 500;
		/* Asegura que no haya un mínimo de altura */
	}
}

/* Estilos para pantallas pequeñas (modo móvil) */
@media screen and (max-width: 767px) {
	.cards {
		gap: 30px;
		flex-direction: column;

	}

	.boxing {
		height: 150px;
		padding: 15px;
	}


}

/*FIN CARDS*/

/*MEDIA QUERIES*/

@media (max-width: 768px) {
	.faq-section {
		margin-top: -105;
		margin-bottom: 100px;
	}

	.faq-title {
		font-size: 24px;
	}

	.faq-question {
		font-size: 18px;
		padding: 12px;

	}

	.faq-answer {
		padding: 0 12px;
		/*font-size: 10px;*/
	}
}

@media (max-width: 480px) {
	.faq-title {
		font-size: 22px;
	}

	.faq-question {
		font-size: 14px;
		padding: 10px;
	}

	.faq-answer {
		padding: 0 10px;
		font-size: 13px;
	}
}

@media (width < 620px) {
	footer {
		flex-direction: column;
	}

	footer.bottom {
		gap: 16px;
		flex-direction: column-reverse;
	}
}

footer>img {
	margin-top: 10px;
}

@media (width >=620px) {
	footer {
		margin: 0 auto;
		max-width: 600px;
		padding: 0;
	}
}

footer {
	color: #a2b5cd;
}

footer.top {
	border-bottom: 2px solid #3a4f6a;
	padding-bottom: 20px;
}

footer.bottom {
	padding: 20px 0;
	justify-content: space-between;
}

footer.top .links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.links>div {
	display: grid;
	gap: 10px;
	margin-top: 0;
}

footer h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #f7f7f7;
}

.legal {
	font-size: 12px;
}

.legal>a {
	margin: 0 4px;
}

.legal>span {
	margin-right: 10px;
}

footer.bottom .links {
	display: flex;
	gap: 18px;
}

footer.bottom .links>a {
	font-size: 24px;
}

@media (width < 420px) {
	footer {
		text-align: center;
		align-items: center;
	}

	footer.top .links {
		grid-template-columns: 1fr;
	}

	footer.bottom {
		align-items: center;
	}

	.legal>span {
		display: block;
		margin-right: 0;
		margin-bottom: 2px;
	}
}




/*RESPONSIVE*/

@media (min-width:450px) {

	#container-principal {}
}

@media (max-width:650px) {
	#conditions {
		height: 600px auto;
	}
}

@media (max-width:950px) {

	#content {
		margin: 0 auto;
	}

	#content h1 {
		font-size: 50px;
	}

	#content .box {
		height: 150px;
		padding-top: 20px;
		text-align: center;
	}

	.box .titulo {
		font-size: 20px;
	}

	.box .titulo-2 {
		font-size: 16px;
	}

	.box .slider {
		height: 5px;
	}

	.box .slider::-webkit-slider-thumb {
		width: 18px;
		height: 18px;
	}

	#monthlyPaymentLabel {
		font-size: 20px;
	}

	#container-principal {
		height: 480px;
		border-bottom-right-radius: 52px;
		border-bottom-left-radius: 52px;
	}

	.solicitar {
		font-size: 13px;
		height: 35px;
		border-radius: 15px;

	}

	#solicitar {
		margin-top: -200;


	}

	.two {
		width: 25%;
		margin-top: 40px;
	}

	.requisitos {
		/*margin-top: 50px;*/
		height: 350px;
	}

	.requisitos h2 {
		margin: 25px;
	}



	.content-buttom {

		display: flex;
		position: relative;
		width: 90%;
		/* Reducir el ancho de los divs en pantallas pequeñas */
		height: 80px;
		line-height: 80px;
		font-size: 15px;
		-webkit-border-radius: 13px;
		-moz-border-radius: 13px;
		border-radius: 13px;
		margin-top: -100px;
	}


	.content-buttom span {

		line-height: 60px;
	}

	#conditions {
		height: 300px;
		padding: 10px;
		-webkit-border-top-left-radius: 52px;
		-webkit-border-top-right-radius: 52px;
		-moz-border-radius-topleft: 52px;
		-moz-border-radius-topright: 52px;
		border-top-left-radius: 52px;
		border-top-right-radius: 52px;



	}

	#conditions .textos {
		width: 100%;
		height: 300px;



	}

	#conditions .textos p {

		font-size: 10px;
		font-weight: 400;
		text-align: justify;
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 50px;


	}

	#conditions #cft {
		font-size: 27px;
		text-align: center;

	}


}

@media (max-width:605px) {


	#content h1 {
		font-size: 28px;

	}

	#content {
		padding: 0;
	}

	#content .box {
		width: 100%;
		height: 140px;
		padding-top: 30px !important;
		align-items: center;
		padding-top: 10px;
		text-align: center;
		margin: 0 auto;
		background-color: white;

	}


	.box .titulo {
		/*font-size: 20px;*/
		color: black !important;
		font-weight: 400;
		left: 20px;
		text-align: center;

	}

	.box .titulo-2 {
		font-size: 18px;
		color: black !important;
		font-weight: 400;
		margin-left: 20px;


	}

	.box .slider {
		width: 95%;
		height: 5px;
		margin-bottom: 28px;
		margin-left: 0px;
		margin-top: 35px;
		
	}

	.box .slider::-webkit-slider-thumb {
		width: 25px;
		height: 25px;


	}

	#monthlyPaymentLabel {
		font-size: 20px;
	}

	#container-principal {
		height: 400px;
		border-bottom-right-radius: 42px;
		border-bottom-left-radius: 42px;
	}

	.solicitar {
		width: 75%;
		font-size: 18px;
		font-weight: 500;
		height: 55px;
		border-radius: 26px;
		margin-top: 25px;

	}


	.two {
		width: 75%;
		margin-top: 20px;
		height: 55px;
		font-size: 18px;
		font-weight: 500;
		margin-left: -23px;
		


	}

	.requisitos {
		margin-top: 30px;
		height: 350px;
		width: 100%;
		border-top-right-radius: 40px;
		border-top-left-radius: 40px;
		margin-bottom: -60px;
		padding-left: 25px !important;
		padding-top: 15px;
	}

	.requisitos h2 {
		margin: 15px;
		font-size: 22px;
	}

	.requisitos ul li {
		font-size: 14px;
		font-weight: 500;
		line-height: 30px;
		text-align: left;
		padding-left: 15px;
	}


	.content-buttom {

		display: none;
		
		
	}

	.content-buttom span{
		display: none;
	}



	#conditions {
	
		height: 360px;
		padding: 10px;
		-webkit-border-top-left-radius: 42px;
		-webkit-border-top-right-radius: 42px;
		-moz-border-radius-topleft: 42px;
		-moz-border-radius-topright: 42px;
		border-top-left-radius: 42px;
		border-top-right-radius: 42px;
		background-color: rgb(218, 224, 226);
		margin-top: -80px;
		
		

	}

	#conditions .textos {
		width: 100%;
		height: 300px;



	}

	#conditions .textos p {

		font-size: 12px;
		font-weight: 500;
		text-align: center;
		padding-right: 10px;
		padding-top: 10px;


	}

	#conditions #cft {
		font-size: 22px;
		text-align: center !important;
		align-items: center;
	}

	.calification {
		padding: 2px !important;


	}

	#scrollToTopBtn {
		width: 50px !important;
		height: 50px !important;
		font-size: 15px !important;


	}


}