#sliderhome {
  height: auto;
  position: relative;
}

.carousel-item img {
  height: 90vh;
  object-fit: cover;
  object-position: top center;
}

#sliderhome .carousel_overlay:after {
  content: "";
  position: absolute;
  background-color: var(--negro);
  opacity: 0.6;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  width: 100%;
  height: 100%;
  max-height: 90vh;
  z-index: 10;
}


#sliderhome .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  padding: 3rem 4rem;
  border-radius: 2rem;
  max-width: 70%;
  margin: 0 auto;
  animation: fadeSlideIn 1.4s ease-out both;
}

/* Título pequeño */
#sliderhome .carousel-caption h5 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

/* Título grande */
#sliderhome .carousel-caption h3 {
  font-size: 4rem;
  font-weight: 500;
  color: var(--blanco);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
  letter-spacing: 0.5rem;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -80%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Estilos para tablets y desktop medianos */
@media (max-width: 1155px) {
  #sliderhome .carousel-caption {
    max-width: 80%;
    padding: 2rem;
  }

  #sliderhome .carousel-caption h5 {
    font-size: 1.5rem;
  }

  #sliderhome .carousel-caption h3 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }

  #sliderhome .boton_seccion {
    font-size: 1.3rem;
    padding: 0.6rem 2rem;
  }
}

/*Estilos para celulares*/
@media (max-width: 678px) {
  #sliderhome .carousel-caption {
    top: 55%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    padding: 1rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #sliderhome .carousel-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 2.2rem;
    text-align: center;
    white-space: nowrap;
    width: 100%;
  }

  #sliderhome .carousel-caption h3 {
    font-size: 2rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1rem;
    line-height: 3rem;
    text-align: center;
    width: 100%;
  }

  #sliderhome .boton_seccion {
    padding: 0.5rem 1.6rem;
    font-size: 1rem;
    border-radius: 2rem;
    text-align: center;
    display: inline-block;
    margin-top: 1rem;
    line-height: 1.4;
  }
}
