  /* Estilos para la sección de inicio */
        .hero-section {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            /* Reducimos la altura a 90% de la pantalla */
            margin-bottom: 0px;
            /* Agregamos espacio inferior */
        }

        .background-container {
            position: fixed; /* Cambiado de absolute a fixed */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: url('../img/background.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        
        

        /* Contenido Principal */
        .tituloInicio {
            position: relative;
            z-index: 1;
            margin-top: 10%;
            /* Ajusta según sea necesario para bajar el contenido */
        }

        .carousel-inner img {
            max-height: 300px;
            /* Ajusta según sea necesario */
            object-fit: cover;
        }
