    :root {
      --color-principal: #6a1b9a;
      --color-secundario: #556b2f;
      --color-fondo: #f4f4f4;
      --color-gratis: #27ae60;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Segoe UI', sans-serif;
      background: var(--color-fondo);
      padding: 20px;
    }
    .btn-inicio {
      display: block;
      margin: 0 auto 20px auto;
      background: var(--color-secundario);
      color: white;
      font-weight: bold;
      padding: 10px 18px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      width: fit-content;
    }
    .titulo-con-icono {
      text-align: center;
      margin-bottom: 24px;
    }
    .emoji {
      font-size: 42px;
      margin-bottom: 6px;
    }
    h2 {
      color: var(--color-principal);
      font-size: 24px;
    }
    .buscador, .filtros {
      max-width: 760px;
      margin: 0 auto 26px auto;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .buscador input[type="text"],
    .filtros select {
      padding: 10px;
      border: 1px solid #bbb;
      border-radius: 8px;
      font-size: 15px;
      width: 180px;
    }
    .buscador button,
    .filtros button {
      padding: 10px 16px;
      border: none;
      background: var(--color-principal);
      color: white;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
    }
    .contenedor-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }
    .tarjeta {
      background: white;
      width: calc(50% - 18px);
      max-width: 320px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
      position: relative;
    }
    .tarjeta:hover {
      transform: scale(1.015);
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }
    /* ✅ Ajuste visual para imagen completa */
    .tarjeta img {
      width: 100%;
      height: auto;
      object-fit: contain;
      aspect-ratio: 16 / 9;
    }
    /* ✅ Ajuste para evitar que el botón se encime */
    .contenido {
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-height: 160px;
    }
    .contenido h3 { font-size: 17px; color: #222; }
    .contenido p { font-size: 14px; color: #555; }
    .btn-ver {
      margin-top: auto;
      background: var(--color-principal);
      color: white;
      text-align: center;
      padding: 8px;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-ver:hover { background: #4a148c; }
    .envio-gratis {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--color-gratis);
      color: white;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: bold;
      box-shadow: 0 0 6px rgba(0,0,0,0.1);
    }
    @media screen and (max-width: 620px) {
      .tarjeta { width: 47%; }
    }
    @media screen and (max-width: 480px) {
      .tarjeta { width: 100%; }
      .buscador input[type="text"], .filtros select { width: 100%; }
    }
  body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
