.nosotros-parallax {
    position: relative;
    min-height: 400px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    background: none;
    overflow: hidden;
}

.nosotros-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/nosotros-bg.jpg') center center / cover no-repeat fixed;
    /* Parallax: fondo fijo */
    will-change: transform;
}

.nosotros-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nosotros-content h2 {
    color: #233444;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: left;
}

.nosotros-box {
    background: #ECECEC;
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(35,52,68,0.08);
    padding: 32px;
    max-width: 600px;
    width: 100%;
    color: #233444;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.7;
}

.nosotros-box p {
    margin-bottom: 14px;
}

@media(max-width:900px){
    .nosotros-content {
        padding: 38px 12px;
    }
    .nosotros-box {
        padding: 18px;
        max-width: 98%;
        font-size: 1rem;
    }
}
