/* ============================= */
/* Configuración del Banner      */
/* ============================= */
.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px; /* Ajusta este valor para mayor o menor redondeo */
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================= */
/* Estilos de la Barra de Navegación */
/* ============================= */

/* Contenedor superpuesto para los enlaces (sin logo) */
.navbar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* 'justify-content: flex-end' posiciona los enlaces a la derecha.
     Para mover los enlaces, modifica el padding o utiliza otras propiedades de flexbox. */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px; /* Ajusta estos valores para mover los elementos (más arriba, abajo o hacia los lados) */
  box-sizing: border-box;
}

/* Botón hamburguesa (opcional, para dispositivos móviles) */
.hamburger {
  cursor: pointer;
  /* Mostrarlo solo en dispositivos móviles: usa media queries para activarlo según tus necesidades */
  display: none;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* ============================= */
/* Estilos de los Enlaces de Navegación */
/* ============================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 50px 50px;
  font-size: 20px;
  font-family: 'Roboto';
}

.nav-links li a img {
  width: 50px; /* Ajusta este valor según el tamaño deseado */
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-links li a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: green;
}

.nav-links li a:hover img {
  transform: scale(1.1);
  /* Se aplican tres drop-shadow para los tres lados deseados */
  filter: drop-shadow(0 -4px 4px white) 
          drop-shadow(4px 0 4px green) 
          drop-shadow(-4px 0 4px yellow);
}

/* ============================= */
/* Notas de Ajuste                */
/* ============================= */
/*
  - Para ajustar el ancho y la altura del banner, modifica las propiedades de .banner y .banner img.
  - Para mover los enlaces dentro del banner, edita el padding de .navbar-overlay.
*/

/* =============================== */
/*        Dropdown del Perfil      */
/* =============================== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-radius: 8px; /* Bordes redondeados */
  overflow: hidden;  /* Para que no se desborden los bordes redondeados */
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #e0e0e0;
  color: #000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* =============================== */
/*          Sección Featured       */
/* =============================== */
.featured {
  padding: 20px;
}

.titulo-pagina,
.titulo-pagina1 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.titulo-pagina {
  font-size: 50px;
}

.titulo-pagina1 {
  font-size: 40px;
}

/* =============================== */
/* Variables y categorías del Banner */
/* =============================== */
:root {
  /* Variable para controlar la altura de las tarjetas */
  --card-height: 140px; 
  --card-width: 150px;
}

.banner .categoria {
  position: absolute;
  bottom: 100px; /* Ajusta la posición vertical según lo requieras */
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
}

.categoria-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 500px; /* Aumenta el espacio entre columnas */
  row-gap: 10px;
  justify-content: center;
}

.categoria-icon {
  width: 100%;
  height: var(--card-height);
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.categoria-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.categoria-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================== */
/*        Tarjetas de Productos    */
/* =============================== */
.productos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  padding: 20px;
  margin-top: -50px;
}

.producto-card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  width: calc(20% - 20px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.producto-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

.producto-card:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 -4px 4px white)
          drop-shadow(4px 0 4px green)
          drop-shadow(-4px 0 4px yellow);
}

/* Stock y descuento */
.stock-circle {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #284014;
  color: #fff;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
}

.descuento {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f7e71a;
  color: #284015;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
}
/* Precios */
.producto-precio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  margin: 10px 0;
}

.precio-tachado {
  text-decoration: line-through;
  color: #111;
  font-size: 14px;
  margin-right: 10px;
}

.precio-descuento {
  color: red;
  font-size: 16px;
}

/* Asegurar el estilo del precio en la tarjeta */
.producto-card .producto-precio {
  color: #111 !important;
  font-family: 'Elegant', sans-serif !important;
  font-size: 1.0rem !important;
  font-weight: bold !important;
  margin: 10px 0;
  text-align: center;
  width: 159px;
  display: block;
  height: 30px;
  unicode-bidi: isolate;
}

.precio-iconos-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  gap: 20px;
}

.iconos-inferiores {
  display: flex;
  gap: 15px;
}

.iconos-inferiores button img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.iconos-inferiores button:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px white)
          drop-shadow(0 0 10px green)
          drop-shadow(0 0 15px yellow);
}

.iconos-inferiores button:active img {
  transform: scale(0.95);
  filter: none;
}

/* Botón "Ver detalles" */
.ver-detalles-btn {
  background-color: #284014;
  color: white;
  border: none;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  margin-top: 15px;
}

.ver-detalles-btn:hover {
  background-color: #3a5e20;
  box-shadow: 0 0 20px rgba(0, 0, 0, 1);
  transform: scale(1.05);
}

/* =============================== */
/*         Mi Cuenta               */
/* =============================== */
body {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  font-family: 'Poppins', sans-serif;
}

.contenedor-perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px auto;
  max-width: 600px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -50px;
}

.avatar {
  width: 150px;
  height: 150px;
  background-color: #D4AF37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.perfil {
  text-align: center;
  width: 100%;
}

.perfil h1 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
}

.perfil p {
  font-size: 18px;
  color: #666;
  margin: 8px 0;
}

.perfil hr {
  width: 80%;
  border: none;
  height: 2px;
  background-color: #D4AF37;
  margin: 10px auto;
}

.perfil .btn-editar {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: #D4AF37;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.perfil .btn-editar:hover {
  background: #b08e2d;
}

/************************************/
/**** Estilo para el pie de página ***/
footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

footer a:visited {
  color: #fff;
}

.insta-footer-icon {
  width: 30px;
  height: auto;
  vertical-align: middle;
  margin-right: 0px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.insta-footer-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}



/**********************************/
/*         Vista Móvil 480px     */
/**********************************/
@media (max-width: 480px) {
  /* Navbar */
  .navbar-overlay {
    padding: 5px 8px;
    justify-content: flex-end;
  }
  
  .nav-links {
    gap: 6px;
    padding: 15px 5px;
    font-size: 14px;
  }
  
  .nav-links li a img {
    width: 30px;
  }
  
  .hamburger {
    display: none;
  }
  
  /* Banner y categorías */
  .banner {
    border-radius: 8px;
  }
  
  .banner .categoria {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  
  .categoria-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 140px;
    row-gap: 15px;
    justify-content: center;
  }
  
  .categoria-icon {
    width: 100%;
    height: 40px;
    border-radius: 6px;
  }
  
  .categoria-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Títulos */
  .titulo-pagina {
    font-size: 28px;
    margin-top: 15px;
  }
  
  .titulo-pagina1 {
    font-size: 24px;
  }
  
  /* Mi Cuenta */
  .contenedor-perfil {
    margin: 60px 5px;
    padding: 15px;
  }
  
  .perfil h1 {
    font-size: 20px;
  }
  
  .perfil p {
    font-size: 14px;
  }
  
  /* Footer */
  footer {
    padding: 8px 4px;
    text-align: center;
  }
  
/**********************************/
/*         Vista Móvil 480px     */
/**********************************/
@media (max-width: 480px) {
  /* Productos: Conserva dos columnas pero con tamaños más reducidos */
  .productos-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales */
      gap: 20px;             /* Espacio entre tarjetas */
      padding: 10px;         /* Menor padding para aprovechar espacio */
      margin: 10px 0;        /* Márgenes verticales */
  }
  
  /* Tarjeta de producto: tamaño reducido en proporción */
  .producto-card {
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 5px;                      /* Padding reducido */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      position: relative;
      text-align: center;
      overflow: hidden;
      border-radius: 3px;
      width: 100%;                       /* Ocupa todo el ancho de la celda */
  }
  
  .producto-card img {
      width: 100%;                       /* Imagen al 100% del contenedor */
      height: 150px;                     /* Altura reducida para móviles */
      object-fit: cover;                 /* Ajusta imagen sin distorsión */
      border-radius: 3px;
  }
  
  .producto-card:hover {
      transform: scale(1.05);            /* Efecto hover igual que PC */
      filter: drop-shadow(0 -4px 4px white)
              drop-shadow(4px 0 4px green)
              drop-shadow(-4px 0 4px yellow);
  }
  
  /* Indicadores de stock y descuento: Proporcionalmente más pequeños */
  .stock-circle {
      top: 8px;                        /* Ajuste de posición */
      right: 8px;
      background-color: #284014;
      color: #fff;
      border-radius: 50%;
      padding: 3px 6px;                /* Padding reducido */
      font-weight: bold;
      font-size: 12px;                 /* Tamaño de fuente reducido */
  }
  
.descuento {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f7e71a;
  color: red;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
}
  
  /* Precios: Se ajusta para que el precio tachado y el precio con descuento queden en columnas (uno debajo del otro) */
  .producto-precio {
      display: flex;                   // Contenedor flexible
      flex-direction: column;          // Fuerza los elementos a mostrarse en una columna
      align-items: center;             // Centra horizontalmente cada línea
      gap: 2px;                       // Espacio pequeño entre filas
      font-size: 10 px;                // Tamaño de fuente base (puedes ajustar según necesites)
      font-weight: bold;
      color: #111;
      margin: 5px 0;                 // Márgenes verticales
      text-align: center;            // Centrado del texto
  }
  
  .precio-tachado {
      text-decoration: line-through;  // Tacha el precio original
      color: #111;
      font-size: 10px;                 // Tamaño de fuente menor
      /* No se requiere margen derecho pues están en columnas */
  }
  
  .precio-descuento {
      color: red;
      font-size: 12px;                // Tamaño ligeramente menor
  }
  
  .precio-iconos-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 5px;                     /* Espacio reducido entre íconos y textos */
      margin-top: 5px;              /* Menor separación superior */
  }
  
  .iconos-inferiores {
      display: flex;
      gap: 5px;                     /* Espacio reducido entre íconos */
  }
  
  .iconos-inferiores button img {
      transition: transform 0.3s ease, filter 0.3s ease;  // Transición para efectos hover
  }
  
  .iconos-inferiores button:hover img {
      transform: scale(1.1);         // Aumenta tamaño de la imagen
      filter: drop-shadow(0 0 5px white)
              drop-shadow(0 0 10px green)
              drop-shadow(0 0 15px yellow);
  }
  
  .iconos-inferiores button:active img {
      transform: scale(0.95);        // Disminuye tamaño al hacer click
      filter: none;
  }
  
  .ver-detalles-btn {
      background-color: #284014;      // Color de fondo del botón
      color: white;
      border: none;
      padding: 4px 10px;              // Padding reducido para el botón
      font-size: 9px;                 // Tamaño de fuente menor
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
      margin-top: 10px;               // Margen superior reducido
  }
  
  .ver-detalles-btn:hover {
      background-color: #3a5e20;       // Cambio de color al hover
      box-shadow: 0 0 20px rgba(0, 0, 0, 1);
      transform: scale(1.05);
  }
}

/**********************************/
/*         Vista Móvil 400px     */
/**********************************/
@media (max-width: 400px) {
  /* Navbar */
  .navbar-overlay {
    padding: 5px 6px; /* Se reduce un poco el padding para pantallas más pequeñas */
    justify-content: flex-end;
  }
  
  .nav-links {
    gap: 4px; /* Se reduce el gap entre enlaces */
    padding: 12px 4px; /* Padding ligeramente inferior */
    font-size: 13px;  /* Fuente un poco más pequeña */
  }
  
  .nav-links li a img {
    width: 28px; /* Ajuste para imágenes de enlaces */
  }
  
  .hamburger {
    display: none;
  }
  
  /* Banner y categorías */
  .banner {
    border-radius: 6px; /* Reducción del redondeado */
  }
  
  .banner .categoria {
    bottom: 8px;  /* Se acerca un poco al borde inferior */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;  /* Ligeramente menor para adaptarse al espacio */
  }
  
  .categoria-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales */
    column-gap: 100px;  /* Gap reducido respecto a 480px */
    row-gap: 12px;      /* Row gap ligeramente aumentado para separar mejor filas */
    justify-content: center;
  }
  
  .categoria-icon {
    width: 100%;
    height: 38px;     /* Altura ligeramente inferior */
    border-radius: 6px;
  }
  
  .categoria-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Títulos */
  .titulo-pagina {
    font-size: 26px; /* Tamaño de fuente reducido */
    margin-top: 12px;
  }
  
  .titulo-pagina1 {
    font-size: 22px;
  }
  
  /* Mi Cuenta */
  .contenedor-perfil {
    margin: 55px 4px; /* Márgenes ajustados */
    padding: 12px;
  }
  
  .perfil h1 {
    font-size: 18px;
  }
  
  .perfil p {
    font-size: 13px;
  }
  
  /* Footer */
  footer {
    padding: 5px 3px; /* Padding reducido */
    text-align: center;
  }
  
  /* Productos: Conserva dos columnas con tamaños reducidos */
  .productos-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales */
      gap: 18px;             /* Espacio entre tarjetas ligeramente reducido */
      padding: 8px;          /* Menor padding */
      margin: 8px 0;         /* Márgenes verticales reducidos */
  }
  
  /* Tarjeta de producto: tamaño reducido en proporción */
  .producto-card {
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 4px;                      /* Padding reducido */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      position: relative;
      text-align: center;
      overflow: hidden;
      border-radius: 3px;
      width: 100%;                       /* Ocupa todo el ancho de la celda */
  }
  
  .producto-card img {
      width: 100%;                       /* Imagen ocupa el 100% del contenedor */
      height: 140px;                     /* Altura reducida para adaptarse a la pantalla */
      object-fit: cover;                 /* Ajusta imagen sin distorsión */
      border-radius: 3px;
  }
  
  .producto-card:hover {
      transform: scale(1.05);            /* Efecto hover igual que en versiones mayores */
      filter: drop-shadow(0 -4px 4px white)
              drop-shadow(4px 0 4px green)
              drop-shadow(-4px 0 4px yellow);
  }
  
  /* Indicadores de stock y descuento: Proporcionalmente más pequeños */
  .stock-circle {
      top: 8px;                        /* Ajuste de posición */
      right: 8px;
      background-color: #284015;
      color: #fff;
      border-radius: 50%;
      padding: 3px 6px;                /* Padding reducido */
      font-weight: bold;
      font-size: 12px;                 /* Fuente reducida */
  }
  
.descuento {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f7e71a;
  color: red;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
}
  
  /* Precios: Se ajusta para que el precio tachado y el precio con descuento queden en columnas (uno debajo del otro) */
  .producto-precio {
      display: flex;                   /* Contenedor flexible */
      flex-direction: column;          /* Apila los elementos verticalmente */
      align-items: center;             /* Centra horizontalmente cada línea */
      gap: 2px;                        /* Espacio pequeño entre filas */
      font-size: 8px;              /* Fuente base ajustada */
      font-weight: bold;
      color: #111;
      margin: 5px 0;                   /* Márgenes verticales */
      text-align: center;              /* Centrado del texto */
  }
  
  .precio-tachado {
      text-decoration: line-through;  /* Tacha el precio original */
      color: #111;
      font-size: 10px;                 /* Fuente reducida */
  }
  
  .precio-descuento {
      color: red;
      font-size: 12px;                /* Fuente ligeramente menor */
  }
  
  .precio-iconos-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 5px;                     /* Espacio reducido entre íconos y textos */
      margin-top: 5px;              /* Menor separación superior */
  }
  
  .iconos-inferiores {
      display: flex;
      gap: 5px;                     /* Espacio reducido entre íconos */
  }
  
  .iconos-inferiores button img {
      transition: transform 0.3s ease, filter 0.3s ease;  /* Transición para efectos hover */
  }
  
  .iconos-inferiores button:hover img {
      transform: scale(1.1);         /* Aumenta tamaño de la imagen al hover */
      filter: drop-shadow(0 0 5px white)
              drop-shadow(0 0 10px green)
              drop-shadow(0 0 15px yellow);
  }
  
  .iconos-inferiores button:active img {
      transform: scale(0.95);        /* Disminuye tamaño al hacer click */
      filter: none;
  }
  
  .ver-detalles-btn {
      background-color: #284015;      /* Color de fondo del botón */
      color: white;
      border: none;
      padding: 4px 10px;              /* Padding reducido para el botón */
      font-size: 9px;                 /* Fuente reducida */
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
      margin-top: 10px;               /* Margen superior reducido */
  }
  
  .ver-detalles-btn:hover {
      background-color: #3a5e20;       /* Cambio de color al hover */
      box-shadow: 0 0 20px rgba(0, 0, 0, 1);
      transform: scale(1.05);
  }
}
/**********************************/
/* Vista Móvil 420px - Categorías   */
/**********************************/
@media (max-width: 420px) {
  /* Contenedor de categorías en el banner: se centra y se ajusta el tamaño */
  .banner .categoria {
    bottom: 8px;                // Se reduce la separación inferior
    left: 50%;                  // Centrado horizontal en el banner
    transform: translateX(-50%); // Corrige el centrado
    width: 95%;                 // Ocupa el 95% del ancho disponible
  }
  
  /* Grid de íconos de categorías: dos columnas con un gap adecuado */
  .categoria-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); // Dos columnas iguales
    column-gap: 120px;          // Espacio entre columnas (ajusta según necesites)
    row-gap: 10px;              // Separación entre filas
    justify-content: center;    // Centra el grid dentro del contenedor
  }
  
  /* Tarjeta de categoría: dimensiones y redondeo */
  .categoria-icon {
    width: 100%;                // Ocupa el 100% del ancho de la celda
    height: 40px;               // Altura ajustada para pantallas de 420px
    border-radius: 6px;         // Bordes redondeados
  }
  
  /* Imagen en la tarjeta de categoría */
  .categoria-icon img {
    width: 100%;                // Imagen ocupa el total del ancho
    height: 100%;               // Ocupa la altura completa del contenedor
    object-fit: cover;          // La imagen se recorta sin distorsión
  }
}

