/* Modal Image Improvements */
.popou_img {
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.popou_img:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

#naranja {
  position: relative !important;
}

#naranja::after {
  content: '🔍 Click para ampliar';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#naranja:hover::after {
  opacity: 1;
}