/*@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";
}

body {
	/*font-family: 'Montserrat', sans-serif;*/


	width: 100%;
	display: flex;
	/* min-height: 20vh;*/



	flex-direction: column;
	min-height: 100vh;

	overflow-x: hidden;

	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: #f4f4f4;
	
}


/*PRELOADER*/

#containers {
	display: flex;

	background-color: white;
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
	z-index: 10000;
	top: 0;
}


#containers .wrapper {

	position: absolute;
	display: flex;
	margin-left: 46%;
	margin-top: 18%;

	/*transform: scale(1.5);*/
}


.loader {
	width: 60px;
	height: 60px;
	position: relative;
	border-radius: 50%;
	border: 3px solid rgb(80, 0, 127);
	border-top-color: transparent;
	animation: spin 1.2s linear infinite;
}

@keyframes spin {

	to {
		transform: rotate(360deg);
	}
}

.cerrar {
	opacity: 0;
	visibility: hidden;



}

/*FIN PRELOADER*/




.formulario {
	width: 100%;
	/*max-width: 400px;*/
	margin: auto;
	border-radius: 1em;
	padding: 3.5em 1.5em;
	margin-top: 50px;


	background: #fff;
	/*padding: 20px;*/
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

	max-width: 500px;
	margin: 80px auto 0 auto;
	/* Ajustar margen superior para compensar el navbar */
}

.form-container {
	width: 100%;
	display: grid;
	gap: 1em;
	grid-auto-columns: 100%;
}

#relative_caja {
	width: 100%;
	position: relative;
	border: none;
	margin: 0 auto;


}


.formulario__grupo-input {
	position: relative;

}

.formulario__input {
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;

	padding: .8em 1em;
	outline: none;
	border: none;
	border: 1px solid #bbb0b0;
	border-radius: 0.2em;
}

.formulario__input:focus {
	border: 1px solid #0075FF;
	outline: none;

}

.formulario__input-error {
	font-size: 12px;
	margin-top: 3px;
	display: none;
	color: rgb(238, 0, 4);
	font-family: 'Poppins', sans-serif;
}

.formulario__input-error-activo {
	display: block;
}

.formulario__validacion-estado {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;

}



/*.formulario__grupo-terminos, 
.formulario__mensaje,
.formulario__grupo-btn-enviar {
	grid-column: span 2;
}*/

.formulario__mensaje {
	height: 45px;
	line-height: 45px;
	background: rgb(238, 0, 4);
	padding: 0 15px;
	border-radius: 3px;
	display: none;
	color: white;
	font-size: 15px;
	text-align: center;
}

.formulario__mensaje-activo {
	display: block;
}

.formulario__mensaje p {
	margin: 0;
}

/*ICONO TELEFONO*/




/*CHECK ANIMADO*/



/*.formulario__label input {
	position: absolute;
	opacity: 0;
}

.input-check {
	position: relative;
	display: inline-block;
	top: 7px;
	width: 25px;
	height: 25px;
	border: 2px solid #ccc;
	border-radius: 4px;
	margin-right: 5px;
	transition: .5s;
}

label input:checked~.input-check {
	background: rgb(80, 0, 127);
	border-color: rgb(80, 0, 127);
	animation: animate .7s ease;
}

@keyframes animate {
	0% {
		transform: scale(1);
	}

	40% {
		transform: scale(1.3, .7);
	}

	55% {
		transform: scale(1);
	}

	70% {
		transform: scale(1.2, .8);
	}

	80% {
		transform: scale(1);
	}

	90% {
		transform: scale(1.1, .9);
	}

	100% {
		transform: scale(1);
	}
}

.input-check::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 3px;
	width: 12px;
	height: 5px;
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: scale(0) rotate(-45deg);
	transition: .5s;
}

label input:checked~.input-check::before {
	transform: scale(1) rotate(-45deg);
}
*/
/*ANIMACION BOTON*/

.button{
  width: 100%;
	/*font-family: inherit;
    
    background-color: #2e4689;
    color: #fff;
    border: none;
    font-weight: 300;
    padding: .7em 0;
    border-radius: .2em;
    cursor: pointer;
    font-weight: 400;
    */
  margin-bottom: 20px;	
  
  padding: .7em 0;	
  font-size: 1rem;	
  position: relative;
  height: 55px;
  border: none;
  color: white;
  background: #24c78e;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  overflow: hidden;

}

.button::before{
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	height: 100%;
	width: 100%;
	background: #34b98b !important;
	border-radius: 6px;
	
}

.button.progress::before{
	animation: progress 6s ease-in-out forwards;
}

@keyframes progress {
	0%{
	  left: -100%;
	  
	}
	10%{
	  left: -97%;
	}
	20%{
	  left: -92%;
	}
	30%{
	  left: -82%;
	}
	30%{
	  left: -62%;
	}
	40%{
	  left: -38%;
	}
	50%{
	  left: -18%;
	  
	}
	60%{
	  left: -14%;
	}
	80%{
	  left: -7%;
	}
	90%{
	  left: -3%;
	}
	100%{
	  left: 0%;
	  
	}
}

.button .text-icon{
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button .text-icon i,
.button .text-icon span{
	position: relative;
	color: #fff;
	font-size: 26px;
}

.button .text-icon span{
	font-size: 20px;
	font-weight: 400;
	margin-left: 8px;
	z-index: 2;
}

/*FIN ANIMACION BOTON*/

/*BOTON DISABLED*/

#formulario #button:disabled {
    background-color: #93e2c6;
    border: none;
	box-shadow: none;
   
}


.form-title {
	text-align: center;
	font-size: 25px;
	margin-bottom: .4em;
	color: #333333;
	letter-spacing: 0lvh;

}


.formulario__mensaje-exito {

	position: absolute;
	top: 0;
	font-size: 15px;
	padding: 8px;
	text-align: center;
	background-color: #119200;
	border-radius: 2px;
	color: white;
	display: none;
}

.formulario__mensaje-exito-activo {
	display: block;
}

.conditions {
	text-align: justify;
	font-size: 11px;
	font-family: 'Poppins', sans-serif;
}

/* ----- -----  Estilos para Validacion ----- ----- */
.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	line-height: 19px;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
	color: rgb(238, 0, 4);

}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: rgb(238, 0, 4);
	line-height: 19px;
	opacity: 1;

}

.formulario__grupo-incorrecto .formulario__input {
	border: 1px solid rgb(238, 0, 4);
}


.formulario .sdo_msj {
	display: none;
}

/*PIE DE PAGINA*/

#footer {

	clear: both;
	width: 100%;
	background-color: white;
	/*margin-top: 15PX;*/
}

#footer .textos p {
	color: #333;
	text-align: center;
	font-size: 18px;
}

#footer .logos {
	margin-top: 15px;
	text-align: center;
}

#footer .cft {
	font-size: 50px;
	color: #333333;
	text-align: center;

	font-weight: bold;
	margin-bottom: 110;
	padding: 0;
}


/*STYLES*/

.g-recaptcha {
	border: none;
}

.orange {
	display: inline-block;
	text-align: justify;
	font-size: 13px;
	margin-top: 18px;
	font-family: familiagibson;
}

.twomsj {
	color: red;
	display: none;
}

#icon {
	position: absolute;
	display: flex;

	left: 10px;
	bottom: 15px;
	z-index: 100;
	cursor: pointer;
	font-size: 16px;
}

#relative_caja {
	display: flex;
	justify-content: space-between;
}

#telefono_2 {
	width: 28%;
	box-sizing: border-box;

}


#telefono_1 {

	width: 70%;
	box-sizing: border-box;


}

/*INICIO HEADER*/
header {
    font-family: 'Poppins', sans-serif;
    background-color: #004aad;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.33);
    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;
}

.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;
}

/* 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: 55%;
	margin: 0 auto;
	padding: 4px;
	background: #24c78e;
	border: none;
	border-radius: 5px;

}

.btn a {
	color: #fafafa !important;
}




#texto{
	height: 110px;
}

/*FIN STYLES*/

/* ----- -----  Mediaqueries ----- ----- */
/*@media screen and (max-width: 800px) {
	.formulario {
		grid-template-columns: 1fr;
	}

	.formulario__grupo-terminos, 
	.formulario__mensaje,
	.formulario__grupo-btn-enviar {
		grid-column: 1;
	}

	.formulario__btn {
		width: 100%;
	}
}*/

/*RESPONSIVE*/

@media (max-width:450px) {
	.form {
		padding: 3.5em 1em;
	}

	#containers .wrapper {
		margin-left: 42%;
		margin-top: 68%;
	}

	
}

@media (max-width:650px) {
    
    
    
	#containers .wrapper {
		margin-left: 42%;
		margin-top: 68%;
	}
	
}

@media (max-width: 632px) {
	footer {
		text-align: center;
		color: white;
		padding: 20px;

	}

	#footer .textos p {
		text-align: justify;
		font-size: 10px;
	}

	#footer .cft {

		font-size: 20px;
		color: #333333;
		margin: 5px;
		margin-left: 80px;


	}
}








@media (max-width:605px) {



	.calification {
		padding: 2px !important;


	}




}