body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.image-container {
  position: relative;
  width: 500px;
  max-width: 90%;
  overflow: hidden;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #962D46D9;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;  /* Alineación horizontal: izquierda */
  align-items: flex-end;        /* Alineación vertical: abajo */
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 20px;
}
.image-container:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content {
  padding: 20px;
}
.overlay:hover {
  color: white;
  text-decoration: none;
}
.overlay-content h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  width: 285px;
  font-weight: 600;
  color: white;
  line-height: 27px !important;
}

.overlay-content p {
  margin: 0;
  font-size: 1.2rem;
  color: white;
}
