/*@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 {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 20vh;
}


.form-title {
    text-align: center;
    font-size: 25px;
    margin-bottom: .4em;
    color: #333333;
    letter-spacing: 0lvh;
    font-weight: 700;

}


/*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;
    }

    .calification {
        padding: 2px !important;


    }
}

.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;
}

form.miFormulario {
    margin-top: 80px; /* Ajusta el valor según lo necesites */
}

.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;
    font-family: 'Poppins',sans-serif;
  }