/* Estilos generales del carrusel con parallax */
.carousel-item {
    position: relative;
    height: 70vh; /* Ajusta la altura según sea necesario */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item img {
    display: none; /* Oculta la imagen si se usa sólo el fondo parallax */
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    color: #ffffff;
}

.carousel-caption h3 {
    font-size: 2rem; /* Ajusta el tamaño según sea necesario */
}

.carousel-caption p {
    font-size: 1.25rem; /* Ajusta el tamaño según sea necesario */
}

/* Otras reglas de estilo */
.header_nosotros {
    text-align: center;
    padding: 20px;
    background-color: #000881;
}

.menu__list {
    list-style: none;
    padding: 0;
}

.menu__item {
    display: inline;
    margin-right: 10px;
}

.menu__link {
    text-decoration: none;
}

