@font-face {
    font-family: 'Outfit-Bold';
    src: url('../fuentes/Outfit-Bold.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Orbitron-Black';
    src: url('../fuentes/Orbitron-Black.ttf') format('truetype');
  }
  
  body {
    margin: 0;
    font-family: 'Outfit-Bold', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .contenido {
    padding: 2rem 1rem;
    max-width: 1300px;
    margin: auto;
    box-sizing: border-box;
  }
  
  .productos-categoria h2 {
    font-family: 'Orbitron-Black', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2f9cb3;
  }
  
  .grid-productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Siempre 3 columnas */
    gap: 2rem;
  }
  
  .producto {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .producto img {
    width: 100%;
    aspect-ratio: 1 / 1; /* cuadrada */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .producto h3 {
    font-size: 1.3rem;
    color: #2f9cb3;
    margin-bottom: 0.5rem;
  }
  
  .producto p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.8rem;
  }
  
  .producto .precio {
    font-weight: bold;
    color: #000;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .btn-comprar {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #2f9cb3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-size: 0.95rem;
  }
  
  .btn-comprar:hover {
    background-color: #257e93;
  }
  
  /* Tablet: 2 productos por fila */
  @media (max-width: 992px) {
    .grid-productos {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Móvil: 1 producto por fila */
  @media (max-width: 600px) {
    .grid-productos {
      grid-template-columns: 1fr;
    }
  }
  