/*@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-size: 1rem;
	
    padding: .8em 1em;
    outline: none;
    border: none;
    border: 1px solid #bbb0b0;
    border-radius: 0.2em;
}

.formulario__input:focus {
	border: 2px solid #0075FF;
	outline: none;
	
}

.formulario__input-error {
	font-size: 12px;
	margin-top: 3px;
	display: none;
	color: rgb(238, 0, 4);
	
}

.formulario__input-error-activo {
	display: block;
}

.formulario__validacion-estado {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;

}

.formulario__checkbox {
	margin-right: 10px;
	
}

/*.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*/




/*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;
}




/*STYLES*/

.g-recaptcha {
	border: none;
}

.orange {
	color: #ff5100;
	margin-top: 5px;
}

.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: 150px;
}

/*FOOTER*/




.section-one {
	position: relative;
	left: 0;
	bottom: 0px;
	width: 100%;
	background: #172940;
	padding-top: 60px;
	/*margin-top: 15px;*/
}

   .btn-one {
	display: block;
	width: 100%;
	margin: 0 auto;
	/*padding: 8px;*/
	/*background: none;*/
	border: none;
	text-decoration: none;
	color: #a2b5cd !important;

}


footer {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin: 0 30px;
}

/*RESPONSIVE*/


@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;
	}
}


@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:605px) {
      	.calification {
		padding: 2px !important;


	}
  }