.carousel-item img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center;
}

/* Ajuste específico para pantallas pequeñas */
@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh;
    object-fit: contain;
    object-position: center center;
  }

  .portada-texto {
    display: none; /* Opcional: oculta los botones en móvil si se ven mal */
  }
}
