.categorias {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding: 1%;
  gap: 1%;
  cursor: pointer;
}

.categorias_nav {
  background-color: #dd1f83;
  border-radius: 1vh;
  padding: 4%;
  color: #fff;
}

.busqueda {
  display: flex;
  flex-direction: column;
  width: 18%;
  padding-left: 1%;
  padding-bottom: 1%;
}

.tigres {
  justify-content: center;
  display: flex;
  gap: 2%;
  padding-bottom: 1%;
}

.img_tigres {
  max-width: 25vh;
  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);
  /* se levanta */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  /* sombra más marcada */
}

/* Fondo oscuro */
.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);
}

/* Imagen en grande */
.modal-img-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

/* Botón cerrar */
.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%);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  color: #ccc;
}

.cuerpo_origen {
  background-color: #fff;
  width: 78%;
}

.gastronomia_contaier {
  background-image: url(../img/turismo/fondos/cultura_img.jpg);
  min-height: 700px !important;
  padding-left: 15%;
  align-content: center;
  background-color: #92a5b1;
  transition: background-size .3s;
  background-repeat: no-repeat;
  background-position: center;
}

.titulo_gastronomia {
  padding: 5px 0;
  text-align: center;
  background-color: #6D8496;
  font-size: 32px;
  color: #fff
}

.body_text {
  padding: 3%;
  color: #6D8496;
}

.title_cultura{
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 25px;
  color: #fff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  transition: text-shadow 0.2s ease;
}

.img_titulo{
  max-height: 6vh;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .resp {
    display: none !important;
  }
}