/* NOSOTROS */
#nosotros {
    background: #FBFBFA;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosotros-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 120px;
}

.nosotros-inner {
    max-width: 680px;
    text-align: center;
}

.nosotros-inner h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #3F3B38;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.nosotros-inner p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 200%;
    color: #766D67;
    margin-bottom: 28px;
}

.nosotros-inner p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 800px) {
    .nosotros-inner h2 {
        font-size: 2rem;
    }

    .nosotros-inner p {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    
    .nosotros-inner p {
        font-size: 1rem;
    }
}