@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');
* {
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
  }
  :root{
    --azul: #1a0582;
  }
  .container{
    max-width: 1200px;
    margin: 0 auto;
  }
  header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
  }
  header .container .logo{
    width: 30%;
  }
  header .container .logo img{
    height: 100px;
  }
  header .container .menu{
     width: 50%;

  }
  header .container .menu ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
  }
  header .container .menu a{
    color: var(--azul);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    padding: 10px 15px;
  }
  header .container .menu a:hover{
    background: var(--azul);
    color: #fafafa;
  }

  .cover{
    background: url(../images/fotos.avif) center center;
    background-size: cover;
    height: 500px;
    width: 100%;
  }
  .coverx{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.7);
  }
  .coverx h1{
    color: #fafafa;
    font-size: 3rem;
    font-weight: 700;
    padding: 10px 0px;
  }
  .coverx p{
    color: #fafafa;
  }

  .nosotros{
    padding: 60px 0px;
  }
  .nosotros .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nosotros .container .left{
    width: 40%;
    text-align: center;
  }
  .nosotros .container .left img{
    height: 400px;
  }
  .nosotros .container .right{
    width: 55%;
  }
  .nosotros .container .right h2{
    color: var(--azul);
    font-size: 2rem;
    padding: 10px 0px;
  }
  .nosotros .container .right p{
    color: #343434;
    font-size: 18px;
  }
.mv{
    background: var(--azul);
}
.mv .container{
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mv .container div{
    width: 40%;
    text-align: center;
}
.mv .container div h1, .mv .container div ion-icon{
    font-size: 2rem;
    color: #fafafa;
    font-weight: 500;
}
.mv .container div p{
    color: #ebebeb;
    padding: 10px 0px;
}

.valores{
    background: #f0efef;
    padding: 30px 0px;
}
.valores h1{
    text-align: center;
    font-size: 2rem;
}
.valores .vls{
    display: flex;
    justify-content: space-between;
    padding: 40px 0px;
}
.valores .vls .item{
    text-align: center;
}
.valores .vls .item ion-icon{
    font-size: 3rem;
    color: var(--azul);
}
.valores .vls h2{
    font-size: 1.2rem;
}

.beneficios{
    background: url(../images/coverben.jpg) center center;
    background-size: cover;
    width: 100%;
    height: 600px;
}
.beneficios .container{
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}
.beneficios .right{
    width: 50%;
}
.beneficios .right h1{
    font-size: 2rem;
    color: var(--azul);
}
.beneficios .right p{
    padding: 20px 0px;

}

.unete{
    background: url(../images/coverc.jpg) center center;
    background-size: cover;
    width: 100%;
    height: 600px;
}

.unete .container{
    display: flex;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
}
.unete .container .left{
    width: 45%;
}
.unete h1{
    font-size: 2rem;
    color: var(--azul);
}
.unete p{
    padding: 10px 0px;
    color: #343434;
}
.unete form{
    display: table;
}

.unete label{
    display: table;
    color: #343434;
    font-size: 14px;
}
.unete input, textarea{
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    width: 100%;
}
.unete form button{
    background: var(--azul);
    color: #fafafa;
    padding: 10px 20px;
    margin-top: 10px;
    border: 0px;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
}
.unete form button:hover{
    cursor: pointer;
    background-color: #184b7f;
}

footer{
    background: #121212;
    padding: 20px 0px;
    text-align: center;
}
footer p, footer a{
    font-size: 12px;
    color: #fafafa;
    text-transform: uppercase;
    letter-spacing: 3px;
}