.carousel {
  width: 100%;
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}


/* Para pantallas pequeñas (menos de 768px) */
@media (max-width: 767px) {
  /* Estilo para el texto centrado */
.carousel-caption {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-45%, -50%);
  text-align: center;
  color: white;
}

.carousel-caption h2 {
  font-size: 1.7em;
  font-weight: bold;
  margin: 0px !important;
  padding: 0px !important;
}

.carousel-caption p {
  font-size: 0.5em;
  margin: 0px 0;
}

.carousel-caption .btn {
  font-size: 0.5em;
  padding: 2px 4px;
  background-color: #101010;
  border: none;
  border-radius: 5px;
}
}

/* Para pantallas medianas (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Estilo para el texto centrado */
.carousel-caption {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-45%, -50%);
  text-align: center;
  color: white;
}

.carousel-caption h2 {
  font-size: 3em;
  font-weight: bold;
  margin: 0px !important;
  padding: 0px !important;
}

.carousel-caption p {
  font-size: 1.5em;
  margin: 20px 0;
}

.carousel-caption .btn {
  font-size: 1.2em;
  padding: 10px 20px;
  background-color: #101010;
  border: none;
  border-radius: 5px;
}
}

/* Para pantallas grandes (más de 992px) */
@media (min-width: 992px) {
  /* Estilo para el texto centrado */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.carousel-caption h2 {
  font-size: 3em;
  font-weight: bold;  
}

.carousel-caption p {
  font-size: 1.5em;
  margin: 20px 0;
}

.carousel-caption .btn {
  font-size: 1.2em;
  padding: 10px 20px;
  background-color: #101010;
  border: none;
  border-radius: 5px;
}
}



.carousel-caption .btn:hover {
  background-color: #101010;;
}