.categorias {
  display: flex;
  flex-direction: column;
  max-width: 289px;
  width: 100%;
  padding: 1%;
  gap: 10px;
}

.categorias_nav {
  background-color: #dd1f83;
  border-radius: 1vh;
  padding: 4%;
  color: #fff;
  cursor: pointer;
  transition: .2s ease;
}

.flex_operadores{
  display:flex
}

.categorias_nav:hover {
  opacity: .9;
}

.busqueda {
  display: flex;
  flex-direction: column;
  width: 18%;
  padding-left: 1%;
  padding-bottom: 1%;
}

.tigres {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 1%;
}

.img_tigres {
  width: 100%;
  max-width: 25vh;
  min-width: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.img_tigres:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ========================= */
/* MODAL */
/* ========================= */

.modal-img {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.modal-img-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.modal-img-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
  z-index: 10000;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  color: #ccc;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {

  .busqueda {
    width: 100%;
    padding: 0 10px 15px;
  }

  .categorias {
    max-width: 100%;
    padding: 0;
  }

  .tigres {
    gap: 15px;
  }

  .img_tigres {
    max-width: 220px;
  }
  .flex_operadores{display: block;}
}

/* ========================= */
/* CELULAR */
/* ========================= */

@media (max-width: 576px) {

  .tigres {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .img_tigres {
    max-width: 100%;
    width: 100%;
    min-width: unset;
  }

  .categorias_nav {
    padding: 12px;
    font-size: 14px;
  }

  .modal-img-content {
    max-width: 95%;
    max-height: 70%;
  }

  .prev,
  .next {
    font-size: 28px;
    padding: 5px;
  }

  .modal-img-close {
    font-size: 28px;
    right: 20px;
  }

  
  .flex_operadores{display: block;}
}