
 .font-myriad{
  font-family:'Myriad Pro Regular' !important;
  font-weight:normal !important;
 }
 .tab-container{
  padding-left: 1rem;
  padding-right: 1rem;
 }
 .tab-buttons {
    text-align: center;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
  }
  
  .tablink {
    background-color: transparent;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: border-bottom 0.3s, color 0.3s;
    font-size: 12px;
  }
  
  .tablink:hover {
    background-color: rgba(0, 0, 0, 0.0) !important;
    color: black !important;
  }
  
  /* Estilos para el contenido de las pestañas */
  .tabcontent {
    display: none;
    padding: 20px;
    border-top: 1px solid #ccc;
    width: 95%;
    margin: 0 auto;
    max-width: 1200px;
  }

  .tabcontent2 {
    padding: 20px;
    width: 95%;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .tabcontent:first-child {
    display: block;
  }
  
  /* Estilos responsivos */
  @media screen and (max-width: 600px) {
    .tab-buttons {
      grid-template-columns: repeat(1,1fr);
    }
    .tablink {
      display: block;
      width: 100%;
      margin-bottom: 5px;
    }
  }
  
  .categoria{
    margin-top: 1rem;
    text-align: center;
    color: #95C441;
    cursor: pointer;
    border: none !important;
  }