
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;
  }
  
  #logotipo{
  width: 12em;
  }
  
  header{
    display: flex;
    justify-content: space-between;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  
  h1{
    font-family: "saira", sans-serif;
    font-size: 2em;
  
  }
  
  #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{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    border-radius: 0em 0em 1em 1em;
    box-shadow: 0px 5px 10px #333;    
  }

  .portada img{
    border-radius: 0em 0em 1em 1em;
  }

  .textoportada{
    color: #fff;
    text-align: center;
    position: absolute;
    display: flex;
    -ms-flex-align: end;
    border-radius: 1em;
    width:100%;
    text-shadow: 0px 5px 5px #000000;
  }

  .fondoportada{
    border-radius: 0em 0em 1em 1em;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
  }

/* sección de equipos */


  .wrap{
    max-width: 1200px;
    margin: auto;
    margin-top: 3em;
  }

  .wrap > h1{
    color: #232449;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 2em 0em;
  }

    /*botones*/

  .wrap > h1::after{
    content: '';
    width: 100%;
    height: 1px;
    background: #333;
    margin: 2em 0em;
  }

  .storewrapper{
    display: flex;
  }

  .categorylist{
    display: flex;
    flex-direction: column;
    width: 20%;
  }

 
  .categorylist > .category_item{
    display: block;
    width: 90%;
    border-radius: 0.5em;
    padding: 1em 0em;
    margin-bottom: 0.5em;
    background: #3764a9;
    text-align: center;
    text-decoration: none;
    color:#fff;
  }

  .categorylist > .ct_item-active{
    background-color: #232449;
  }

   /* productos */

  .productslist{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
  }

  .productslist > .productitem{
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    width: 30%;
    margin-left: 3%;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .productslist > .productitem > img{
    width: 100%;
  }

  .productslist > .productitem > a{
    display: block;
    width: 100%;
    padding: 0.5em 0em;
    color: #fff;
    background-color:#232449;
    text-align:center;
    text-decoration: none;
  }


  /* 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 */
    }
  }
  