    /* Contenedor principal con efecto de hover */
.hover-effect-container {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}

/* Texto de hover */
.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
  color: white;
  padding: 10px;
  font-family: inherit;
  border-radius: 5px;
  opacity: 0; /* Empieza oculto */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transición suave */
  cursor: pointer;
}

.hover-effect-container:hover .hover-text {
  opacity: 1; /* Muestra el texto */
  transform: scale(0.95); /* Pequeño efecto de escala */
}

/* Estilos para las imágenes dentro del contenedor */
.hover-effect-container img {
  width: 100%;
  height: auto;
  border-radius: 5px; /* Esquinas redondeadas para la imagen */
}

