
body{
    background-color: #fff;
    color: #232449;
    max-width: 1200px;
    margin: auto;
    font-family: "Saira", sans-serif;
    font-size: 12pt;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:"wdth" 100;
    box-sizing: border-box;
  }
  
  h1{
    font-family: "saira", sans-serif;
    font-size: 2em;  
  }

   #logotipo{
  width: 12em;
  }
  
  header{
    display: flex;
    justify-content: space-between;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  
  #WhatsApp{
    background-color: green;
    color: rgb(2, 255, 129);
    text-align: center;
    text-decoration: none;
    width: 8em;
    height: 3em;
    border-radius: 0.5em;
  }
  
  /* navegacion */
  
  .navbar {
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color:#232449;
      color: aliceblue;
      font-family: "Saira", sans-serif;
      font-weight: 400;
      border-radius: 0.5em 0.5em 0em 0em;
  }
  
  .nav-links {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
  }
  
  .nav-links li {
      margin: 0 10px;
  }
  
  .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
  }
  
  .nav-links a:hover {
      text-decoration: underline;
  }
  
  /* Estilos responsivos */
  .menu-toggle {
      display: none; /* Oculto en pantallas grandes */
      flex-direction: column;
      cursor: pointer;
  }
  
  .menu-toggle span {
      background: white;
      height: 3px;
      width: 25px;
      margin: 4px;
  }


/*portada*/
  .portada{
    background: rgb(55, 100, 169);
    color: #fff;
    text-align: center;
    padding: 0.5em;
  }

  .portada h1{
    margin: 0;
  }

  article{
    margin: auto;
    width: 80%;
    padding-bottom: 4em;
  }

  .imagenprincipal{
    border-radius: 0em  0em 0.5em 0.5em;
  }

/* Footer*/

footer{
  background-color:#232449;
  display: flex;
  width: 100%;
  justify-content:space-between;
  margin-top: 5em;
}

footer .menufooter li a{
  text-decoration: none;
  color: #fff;
}

footer ul{
  padding: 2em 6em;
}

footer img{
  width: auto;
  height: 3em;
  padding: 2em;
}
 
footer span{
  width: 25%;
}

  /* media */

  @media (max-width: 768px) {
    .nav-links {
        display: none; /* Oculto inicialmente en pantallas pequeñas */
        flex-direction: column;
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0;
        background-color: #333;
        z-index: 2;
    }
  
    .navbar{
      height: auto;
    }
  
    .nav-links.active {
        display: flex; /* Mostrar cuando esté activo */
    }
  
    .menu-toggle {
        display: flex; /* Mostrar menú hamburguesa */
    }
  }
  