/* --- ESTILO GERAL DE QUEM SOMOS --- */
.quemsomos {
    padding: 120px 0px;
}

.quemsomos-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.quemsomos-text, .quemsomos-image {
    flex: 1;
}

/* --- ESTILO DO TEXTO (ESQUERDA) --- */
.quemsomos-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quemsomos-hat {
    color: var(--Grey-50);
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 1px;
    width: fit-content;

    border: 1px solid rgb(255, 255, 255, 0.3);
    padding: 8px 14px;
    border-radius: 64px;
}

.quemsomos-title {
    color: var(--Grey-50);
    font-size: 64px;
    font-weight: 100px;
    text-align: left;
    line-height: 1.3;
    max-width: 543px;
}

.quemsomos-description {
    color: var(--Grey-50);
    font-size: 16px;
    font-weight: 100;
    text-align: left;
    max-width: 543px;
}

.quemsomos .hovered-secondary {
    margin-top: 12px;
}

/* --- ESTILO DA IMAGEM (DIREITA) --- */
.quemsomos-image {
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative;
}

.quemsomos-image > img {
    width: 550px;
    height: 548px;
    object-fit: cover;
    border-radius: 12px;
    
    border: 10px solid rgba(4, 115, 255, 0.3);
    box-shadow: 0px 0px 80px -20px rgba(4, 115, 255, 0.5);
}

.feature-pill {
    position: absolute; 
    display: flex;
    align-items: center;
    gap: 12px;

    background-color: rgba(100, 116, 139, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 10px 14px;

    color: var(--Grey-50);
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}

.pill-1 {
    top: 10%;
    left: -80px;
}

.pill-2 {
    top: 45%;
    right: -25px;
}

.pill-3 {
    bottom: 10%;
    left: -20px;
}