.image-component {
  position: relative;
  display: inline-block;
  width: 100%;
}

.overlay-texts {
  font-family: "Funnel Sans", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: none; /* Permite hacer clic en la imagen debajo */
}

.overlay-text {
  line-height: 1.2;
  word-wrap: break-word;
  max-width: 100%;
}

.overlay-text-2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 60%;
  line-height: var(--bs-body-line-height);
}

.overlay-text-3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 60%;
}

/* Responsivo para textos superpuestos */
@media (max-width: 768px) {
  .overlay-text {
    font-size: 14px !important;
  }
  .overlay-text-1 {
    font-size: 24px !important;
    width: 80% !important;
  }
  .overlay-text-2 {
    font-size: 14px !important;
    width: 80% !important;
  }
  .overlay-text-3 {
    font-size: 14px !important;
    width: 80% !important;
  }
}
