.nosotros-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.nosotros-imagen {
    flex: 1;
}

.nosotros-imagen img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: block;
}

.nosotros-info {
    flex: 1;
    text-align: left;
}

.nosotros-contenido {
    max-width: 800px;
}

.logo-seccion {
    display: block;
    width: clamp(54px, 8vw, 74px);
    height: auto;
    margin-bottom: 14px;
}

.nosotros h2 {
    margin-bottom: 30px;
}

.nosotros-texto {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nosotros-texto-principal {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
}

.frase-contenido {
    max-width: 800px;
    margin-top: 30px;
}

.nosotros blockquote {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--azul-principal);
    font-style: italic;
    font-weight: 500;
    position: relative;
    margin: 0;
    padding: 0 20px;
}

.nosotros blockquote::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--azul-claro);
    opacity: 0.6;
}

.nosotros blockquote::after {
    content: "”";
    font-size: 4rem;
    display: inline-block;
    line-height: 0;
    color: var(--azul-claro);
    opacity: 0.6;
    transform: translateY(25px);
}

.autor {
    margin-top: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--azul-principal);
}

/* TABLET / INTERMEDIO */
@media (min-width: 769px) and (max-width: 1100px) {
    .nosotros {
        padding: 70px 24px;
    }

    .nosotros-layout {
        gap: 35px;
        align-items: center;
    }

    .nosotros-imagen img {
        max-height: 480px;
    }

    .nosotros h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .nosotros-texto-principal {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .nosotros-texto {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .nosotros blockquote {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}

/* MOBILE / TABLET CHICA */
@media (max-width: 768px) {
    .nosotros {
        padding: 60px 18px;
    }

    .nosotros-layout {
        flex-direction: column;
        gap: 32px;
    }

    .nosotros-imagen {
        width: 100%;
    }

    .nosotros-imagen img {
        max-height: 360px;
        border-radius: 8px;
    }

    .nosotros-info {
        text-align: center;
    }

    .nosotros-contenido {
        max-width: 650px;
        margin: 0 auto;
    }

    .logo-seccion {
        width: clamp(52px, 16vw, 68px);
        margin: 0 auto 14px;
    }

    .nosotros h2 {
        font-size: clamp(1.7rem, 7vw, 2rem);
        margin-bottom: 18px;
    }

    .nosotros-texto-principal {
        font-size: 1.1rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .nosotros-texto {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 0;
    }

    .frase-contenido {
        margin: 28px auto 0;
        max-width: 620px;
        text-align: center;
    }

    .nosotros blockquote {
        font-size: clamp(1.15rem, 5vw, 1.45rem);
        line-height: 1.5;
        padding: 0 14px;
    }

    .nosotros blockquote::before {
        font-size: 3rem;
        left: -2px;
        top: -18px;
    }

    .nosotros blockquote::after {
        font-size: 3rem;
        transform: translateY(18px);
    }

    .autor {
        margin-top: 18px;
        font-size: 0.8rem;
    }
}

/* MOBILE CHICO */
@media (max-width: 420px) {
    .nosotros {
        padding: 50px 14px;
    }

    .nosotros-layout {
        gap: 26px;
    }

    .nosotros-imagen img {
        max-height: 280px;
    }

    .nosotros-texto-principal {
        font-size: 1rem;
    }

    .nosotros-texto {
        font-size: 0.94rem;
    }

    .nosotros blockquote {
        padding: 0 8px;
    }
}

/* MÍNIMO 320PX */
@media (max-width: 340px) {
    .nosotros {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nosotros-imagen img {
        max-height: 240px;
    }

    .nosotros blockquote {
        font-size: 1.05rem;
    }
}