        .fixed-height-carousel {
            height: 500px; /* Altura para las imagenes de mi carrusel */
            overflow: hidden;
            margin-bottom: 30px; /* Espacio para el contenido debajo */
        }
        
        .fixed-height-carousel .carousel-inner,
        .fixed-height-carousel .carousel-item,
        .fixed-height-carousel .carousel-item img {
            height: 100%;
            object-fit: cover; /* Ajusta la imagen manteniendo proporción */
        }
        
        .carousel-caption {
         background-color: rgba(147, 112, 219, 0.3); 
            border-radius: 10px;
            padding: 20px;
            bottom: 20%;
            left: 10%;
            right: 10%;
        }
        
        .carousel-caption h5 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .carousel-caption p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .btn-carousel {
            background-color: #4a6baf;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            border: 2px solid white;
            transition: all 0.3s ease;
        }
        
        .btn-carousel:hover {
            background-color: white;
            color: #4a6baf;
            transform: scale(1.05);
        }
        .no-barra .caption-no-barra {
          background: none !important;
          bottom: 50%;         
          transform: translateY(50%);
        }
