/* LAYOUT, ESTILO DE FONTES E PERSONALIZAÇÃO DA FUNCIONALIDADE "QUEM SOMOS" */

.about {
    background: #1a5fa8;
    padding: 0 48px 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: -2px;
}

.about__wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

.about__image-side {
    position: relative;
    z-index: 2;
    width: 42%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about__image-wrapper {
    width: 100%;
    height: 110%;
    position: absolute;
    bottom: 0;
    left: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about__image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

.about__content-side {
    flex: 1;
    background: #1a5fa8;
    border-radius: 24px;
    padding: 60px 56px 60px 100px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 95, 168, 0.35);
}

.about__content-side::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.about__content-side::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.about__content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.about__title {
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.about__text {
    font-size: clamp(14px, 1.3vw, 16px);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about__highlight {
    font-size: clamp(14px, 1.3vw, 16px);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .about__content-side {
        padding: 50px 48px 50px 60px;
    }
}

@media (max-width: 960px) {
    .about {
        padding: 0 24px 60px;
    }

    .about__wrapper {
        flex-direction: column;
        min-height: auto;
        background: #1a5fa8;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(26, 95, 168, 0.35);
        overflow: hidden;
    }

    .about__image-side {
        width: 100%;
        height: auto;
        position: relative;
        padding: 24px 24px 0 24px;
        display: block;
    }

    .about__image-wrapper {
        height: 100%;
        position: relative;
        bottom: auto;
        left: 0;
    }

    .about__image-wrapper img,
    .about__image-placeholder {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 16px;
        display: block;
    }

    .about__content-side {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 32px 32px 48px 32px;
    }

    .about__content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 0 16px 40px;
    }

    .about__image-side {
        height: auto;
        padding: 16px 16px 0 16px;
    }

    .about__content-side {
        padding: 24px 20px 36px 20px;
    }

    .about__title {
        margin-bottom: 20px;
    }
}